Data Set Information:
This is a large dataset of news items and their respective social feedback on multiple platforms: Facebook, Google+ and LinkedIn. The collected data relates to a period of 8 months, between November 2015 and July 2016, accounting for about 100,000 news items on four different topics: economy, microsoft, obama and palestine. This data set is tailored for evaluative comparisons in predictive analytics tasks, although allowing for tasks in other research areas such as topic detection and tracking, sentiment analysis in short text, first story detection or news recommendation.
The features of each instance and their definition are as follows:
Some of the required libraries..
# !pip install numpy
# !pip install pandas
# !pip install pandas_profiling
# !pip install colorama
# !pip install plotly
# !pip install seaborn
# !pip install scipy
# !pip install scikit-learn
# !pip install xgboost
# !pip install lightgbm
# !pip install catboost
import pandas as pd
import numpy as np
import os
import matplotlib
import matplotlib.pyplot as plt
plt.style.use('ggplot')
import seaborn as sns
sns.set(style='whitegrid')
!pip install wordcloud
from wordcloud import WordCloud
from sklearn.feature_extraction.text import CountVectorizer, TfidfVectorizer
from sklearn.model_selection import train_test_split
from sklearn.decomposition import PCA, TruncatedSVD
from sklearn.metrics import classification_report,confusion_matrix
from collections import defaultdict
from collections import Counter
!pip install gensim
import re
import gensim
import string
!pip install keras
from tqdm import tqdm
from keras.preprocessing.text import Tokenizer
from keras.preprocessing.sequence import pad_sequences
from keras.models import Sequential
from keras.layers import Embedding, LSTM,Dense, SpatialDropout1D, Dropout
from keras.initializers import Constant
!pip install tensorflow
import warnings
warnings.simplefilter('ignore')
import tensorflow as tf
!pip install nltk
import nltk
nltk.download('all')
Requirement already satisfied: wordcloud in /usr/local/lib/python3.10/dist-packages (1.9.2) Requirement already satisfied: numpy>=1.6.1 in /usr/local/lib/python3.10/dist-packages (from wordcloud) (1.23.5) Requirement already satisfied: pillow in /usr/local/lib/python3.10/dist-packages (from wordcloud) (9.4.0) Requirement already satisfied: matplotlib in /usr/local/lib/python3.10/dist-packages (from wordcloud) (3.7.1) Requirement already satisfied: contourpy>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib->wordcloud) (1.1.0) Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.10/dist-packages (from matplotlib->wordcloud) (0.11.0) Requirement already satisfied: fonttools>=4.22.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib->wordcloud) (4.42.1) Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib->wordcloud) (1.4.5) Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib->wordcloud) (23.1) Requirement already satisfied: pyparsing>=2.3.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib->wordcloud) (3.1.1) Requirement already satisfied: python-dateutil>=2.7 in /usr/local/lib/python3.10/dist-packages (from matplotlib->wordcloud) (2.8.2) Requirement already satisfied: six>=1.5 in /usr/local/lib/python3.10/dist-packages (from python-dateutil>=2.7->matplotlib->wordcloud) (1.16.0) Requirement already satisfied: gensim in /usr/local/lib/python3.10/dist-packages (4.3.2) Requirement already satisfied: numpy>=1.18.5 in /usr/local/lib/python3.10/dist-packages (from gensim) (1.23.5) Requirement already satisfied: scipy>=1.7.0 in /usr/local/lib/python3.10/dist-packages (from gensim) (1.11.2) Requirement already satisfied: smart-open>=1.8.1 in /usr/local/lib/python3.10/dist-packages (from gensim) (6.4.0) Requirement already satisfied: keras in /usr/local/lib/python3.10/dist-packages (2.13.1) Requirement already satisfied: tensorflow in /usr/local/lib/python3.10/dist-packages (2.13.0) Requirement already satisfied: absl-py>=1.0.0 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (1.4.0) Requirement already satisfied: astunparse>=1.6.0 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (1.6.3) Requirement already satisfied: flatbuffers>=23.1.21 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (23.5.26) Requirement already satisfied: gast<=0.4.0,>=0.2.1 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (0.4.0) Requirement already satisfied: google-pasta>=0.1.1 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (0.2.0) Requirement already satisfied: grpcio<2.0,>=1.24.3 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (1.57.0) Requirement already satisfied: h5py>=2.9.0 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (3.9.0) Requirement already satisfied: keras<2.14,>=2.13.1 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (2.13.1) Requirement already satisfied: libclang>=13.0.0 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (16.0.6) Requirement already satisfied: numpy<=1.24.3,>=1.22 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (1.23.5) Requirement already satisfied: opt-einsum>=2.3.2 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (3.3.0) Requirement already satisfied: packaging in /usr/local/lib/python3.10/dist-packages (from tensorflow) (23.1) Requirement already satisfied: protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0dev,>=3.20.3 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (3.20.3) Requirement already satisfied: setuptools in /usr/local/lib/python3.10/dist-packages (from tensorflow) (67.7.2) Requirement already satisfied: six>=1.12.0 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (1.16.0) Requirement already satisfied: tensorboard<2.14,>=2.13 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (2.13.0) Requirement already satisfied: tensorflow-estimator<2.14,>=2.13.0 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (2.13.0) Requirement already satisfied: termcolor>=1.1.0 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (2.3.0) Requirement already satisfied: typing-extensions<4.6.0,>=3.6.6 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (4.5.0) Requirement already satisfied: wrapt>=1.11.0 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (1.15.0) Requirement already satisfied: tensorflow-io-gcs-filesystem>=0.23.1 in /usr/local/lib/python3.10/dist-packages (from tensorflow) (0.33.0) Requirement already satisfied: wheel<1.0,>=0.23.0 in /usr/local/lib/python3.10/dist-packages (from astunparse>=1.6.0->tensorflow) (0.41.2) Requirement already satisfied: google-auth<3,>=1.6.3 in /usr/local/lib/python3.10/dist-packages (from tensorboard<2.14,>=2.13->tensorflow) (2.17.3) Requirement already satisfied: google-auth-oauthlib<1.1,>=0.5 in /usr/local/lib/python3.10/dist-packages (from tensorboard<2.14,>=2.13->tensorflow) (1.0.0) Requirement already satisfied: markdown>=2.6.8 in /usr/local/lib/python3.10/dist-packages (from tensorboard<2.14,>=2.13->tensorflow) (3.4.4) Requirement already satisfied: requests<3,>=2.21.0 in /usr/local/lib/python3.10/dist-packages (from tensorboard<2.14,>=2.13->tensorflow) (2.31.0) Requirement already satisfied: tensorboard-data-server<0.8.0,>=0.7.0 in /usr/local/lib/python3.10/dist-packages (from tensorboard<2.14,>=2.13->tensorflow) (0.7.1) Requirement already satisfied: werkzeug>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from tensorboard<2.14,>=2.13->tensorflow) (2.3.7) Requirement already satisfied: cachetools<6.0,>=2.0.0 in /usr/local/lib/python3.10/dist-packages (from google-auth<3,>=1.6.3->tensorboard<2.14,>=2.13->tensorflow) (5.3.1) Requirement already satisfied: pyasn1-modules>=0.2.1 in /usr/local/lib/python3.10/dist-packages (from google-auth<3,>=1.6.3->tensorboard<2.14,>=2.13->tensorflow) (0.3.0) Requirement already satisfied: rsa<5,>=3.1.4 in /usr/local/lib/python3.10/dist-packages (from google-auth<3,>=1.6.3->tensorboard<2.14,>=2.13->tensorflow) (4.9) Requirement already satisfied: requests-oauthlib>=0.7.0 in /usr/local/lib/python3.10/dist-packages (from google-auth-oauthlib<1.1,>=0.5->tensorboard<2.14,>=2.13->tensorflow) (1.3.1) Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2.21.0->tensorboard<2.14,>=2.13->tensorflow) (3.2.0) Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2.21.0->tensorboard<2.14,>=2.13->tensorflow) (3.4) Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2.21.0->tensorboard<2.14,>=2.13->tensorflow) (2.0.4) Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2.21.0->tensorboard<2.14,>=2.13->tensorflow) (2023.7.22) Requirement already satisfied: MarkupSafe>=2.1.1 in /usr/local/lib/python3.10/dist-packages (from werkzeug>=1.0.1->tensorboard<2.14,>=2.13->tensorflow) (2.1.3) Requirement already satisfied: pyasn1<0.6.0,>=0.4.6 in /usr/local/lib/python3.10/dist-packages (from pyasn1-modules>=0.2.1->google-auth<3,>=1.6.3->tensorboard<2.14,>=2.13->tensorflow) (0.5.0) Requirement already satisfied: oauthlib>=3.0.0 in /usr/local/lib/python3.10/dist-packages (from requests-oauthlib>=0.7.0->google-auth-oauthlib<1.1,>=0.5->tensorboard<2.14,>=2.13->tensorflow) (3.2.2) Requirement already satisfied: nltk in /usr/local/lib/python3.10/dist-packages (3.8.1) Requirement already satisfied: click in /usr/local/lib/python3.10/dist-packages (from nltk) (8.1.7) Requirement already satisfied: joblib in /usr/local/lib/python3.10/dist-packages (from nltk) (1.3.2) Requirement already satisfied: regex>=2021.8.3 in /usr/local/lib/python3.10/dist-packages (from nltk) (2023.6.3) Requirement already satisfied: tqdm in /usr/local/lib/python3.10/dist-packages (from nltk) (4.66.1)
[nltk_data] Downloading collection 'all' [nltk_data] | [nltk_data] | Downloading package abc to /root/nltk_data... [nltk_data] | Unzipping corpora/abc.zip. [nltk_data] | Downloading package alpino to /root/nltk_data... [nltk_data] | Unzipping corpora/alpino.zip. [nltk_data] | Downloading package averaged_perceptron_tagger to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping taggers/averaged_perceptron_tagger.zip. [nltk_data] | Downloading package averaged_perceptron_tagger_ru to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping [nltk_data] | taggers/averaged_perceptron_tagger_ru.zip. [nltk_data] | Downloading package basque_grammars to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping grammars/basque_grammars.zip. [nltk_data] | Downloading package bcp47 to /root/nltk_data... [nltk_data] | Downloading package biocreative_ppi to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/biocreative_ppi.zip. [nltk_data] | Downloading package bllip_wsj_no_aux to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping models/bllip_wsj_no_aux.zip. [nltk_data] | Downloading package book_grammars to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping grammars/book_grammars.zip. [nltk_data] | Downloading package brown to /root/nltk_data... [nltk_data] | Unzipping corpora/brown.zip. [nltk_data] | Downloading package brown_tei to /root/nltk_data... [nltk_data] | Unzipping corpora/brown_tei.zip. [nltk_data] | Downloading package cess_cat to /root/nltk_data... [nltk_data] | Unzipping corpora/cess_cat.zip. [nltk_data] | Downloading package cess_esp to /root/nltk_data... [nltk_data] | Unzipping corpora/cess_esp.zip. [nltk_data] | Downloading package chat80 to /root/nltk_data... [nltk_data] | Unzipping corpora/chat80.zip. [nltk_data] | Downloading package city_database to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/city_database.zip. [nltk_data] | Downloading package cmudict to /root/nltk_data... [nltk_data] | Unzipping corpora/cmudict.zip. [nltk_data] | Downloading package comparative_sentences to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/comparative_sentences.zip. [nltk_data] | Downloading package comtrans to /root/nltk_data... [nltk_data] | Downloading package conll2000 to /root/nltk_data... [nltk_data] | Unzipping corpora/conll2000.zip. [nltk_data] | Downloading package conll2002 to /root/nltk_data... [nltk_data] | Unzipping corpora/conll2002.zip. [nltk_data] | Downloading package conll2007 to /root/nltk_data... [nltk_data] | Downloading package crubadan to /root/nltk_data... [nltk_data] | Unzipping corpora/crubadan.zip. [nltk_data] | Downloading package dependency_treebank to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/dependency_treebank.zip. [nltk_data] | Downloading package dolch to /root/nltk_data... [nltk_data] | Unzipping corpora/dolch.zip. [nltk_data] | Downloading package europarl_raw to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/europarl_raw.zip. [nltk_data] | Downloading package extended_omw to [nltk_data] | /root/nltk_data... [nltk_data] | Downloading package floresta to /root/nltk_data... [nltk_data] | Unzipping corpora/floresta.zip. [nltk_data] | Downloading package framenet_v15 to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/framenet_v15.zip. [nltk_data] | Downloading package framenet_v17 to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/framenet_v17.zip. [nltk_data] | Downloading package gazetteers to /root/nltk_data... [nltk_data] | Unzipping corpora/gazetteers.zip. [nltk_data] | Downloading package genesis to /root/nltk_data... [nltk_data] | Unzipping corpora/genesis.zip. [nltk_data] | Downloading package gutenberg to /root/nltk_data... [nltk_data] | Unzipping corpora/gutenberg.zip. [nltk_data] | Downloading package ieer to /root/nltk_data... [nltk_data] | Unzipping corpora/ieer.zip. [nltk_data] | Downloading package inaugural to /root/nltk_data... [nltk_data] | Unzipping corpora/inaugural.zip. [nltk_data] | Downloading package indian to /root/nltk_data... [nltk_data] | Unzipping corpora/indian.zip. [nltk_data] | Downloading package jeita to /root/nltk_data... [nltk_data] | Downloading package kimmo to /root/nltk_data... [nltk_data] | Unzipping corpora/kimmo.zip. [nltk_data] | Downloading package knbc to /root/nltk_data... [nltk_data] | Downloading package large_grammars to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping grammars/large_grammars.zip. [nltk_data] | Downloading package lin_thesaurus to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/lin_thesaurus.zip. [nltk_data] | Downloading package mac_morpho to /root/nltk_data... [nltk_data] | Unzipping corpora/mac_morpho.zip. [nltk_data] | Downloading package machado to /root/nltk_data... [nltk_data] | Downloading package masc_tagged to /root/nltk_data... [nltk_data] | Downloading package maxent_ne_chunker to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping chunkers/maxent_ne_chunker.zip. [nltk_data] | Downloading package maxent_treebank_pos_tagger to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping taggers/maxent_treebank_pos_tagger.zip. [nltk_data] | Downloading package moses_sample to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping models/moses_sample.zip. [nltk_data] | Downloading package movie_reviews to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/movie_reviews.zip. [nltk_data] | Downloading package mte_teip5 to /root/nltk_data... [nltk_data] | Unzipping corpora/mte_teip5.zip. [nltk_data] | Downloading package mwa_ppdb to /root/nltk_data... [nltk_data] | Unzipping misc/mwa_ppdb.zip. [nltk_data] | Downloading package names to /root/nltk_data... [nltk_data] | Unzipping corpora/names.zip. [nltk_data] | Downloading package nombank.1.0 to /root/nltk_data... [nltk_data] | Downloading package nonbreaking_prefixes to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/nonbreaking_prefixes.zip. [nltk_data] | Downloading package nps_chat to /root/nltk_data... [nltk_data] | Unzipping corpora/nps_chat.zip. [nltk_data] | Downloading package omw to /root/nltk_data... [nltk_data] | Downloading package omw-1.4 to /root/nltk_data... [nltk_data] | Downloading package opinion_lexicon to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/opinion_lexicon.zip. [nltk_data] | Downloading package panlex_swadesh to [nltk_data] | /root/nltk_data... [nltk_data] | Downloading package paradigms to /root/nltk_data... [nltk_data] | Unzipping corpora/paradigms.zip. [nltk_data] | Downloading package pe08 to /root/nltk_data... [nltk_data] | Unzipping corpora/pe08.zip. [nltk_data] | Downloading package perluniprops to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping misc/perluniprops.zip. [nltk_data] | Downloading package pil to /root/nltk_data... [nltk_data] | Unzipping corpora/pil.zip. [nltk_data] | Downloading package pl196x to /root/nltk_data... [nltk_data] | Unzipping corpora/pl196x.zip. [nltk_data] | Downloading package porter_test to /root/nltk_data... [nltk_data] | Unzipping stemmers/porter_test.zip. [nltk_data] | Downloading package ppattach to /root/nltk_data... [nltk_data] | Unzipping corpora/ppattach.zip. [nltk_data] | Downloading package problem_reports to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/problem_reports.zip. [nltk_data] | Downloading package product_reviews_1 to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/product_reviews_1.zip. [nltk_data] | Downloading package product_reviews_2 to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/product_reviews_2.zip. [nltk_data] | Downloading package propbank to /root/nltk_data... [nltk_data] | Downloading package pros_cons to /root/nltk_data... [nltk_data] | Unzipping corpora/pros_cons.zip. [nltk_data] | Downloading package ptb to /root/nltk_data... [nltk_data] | Unzipping corpora/ptb.zip. [nltk_data] | Downloading package punkt to /root/nltk_data... [nltk_data] | Unzipping tokenizers/punkt.zip. [nltk_data] | Downloading package qc to /root/nltk_data... [nltk_data] | Unzipping corpora/qc.zip. [nltk_data] | Downloading package reuters to /root/nltk_data... [nltk_data] | Downloading package rslp to /root/nltk_data... [nltk_data] | Unzipping stemmers/rslp.zip. [nltk_data] | Downloading package rte to /root/nltk_data... [nltk_data] | Unzipping corpora/rte.zip. [nltk_data] | Downloading package sample_grammars to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping grammars/sample_grammars.zip. [nltk_data] | Downloading package semcor to /root/nltk_data... [nltk_data] | Downloading package senseval to /root/nltk_data... [nltk_data] | Unzipping corpora/senseval.zip. [nltk_data] | Downloading package sentence_polarity to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/sentence_polarity.zip. [nltk_data] | Downloading package sentiwordnet to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/sentiwordnet.zip. [nltk_data] | Downloading package shakespeare to /root/nltk_data... [nltk_data] | Unzipping corpora/shakespeare.zip. [nltk_data] | Downloading package sinica_treebank to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/sinica_treebank.zip. [nltk_data] | Downloading package smultron to /root/nltk_data... [nltk_data] | Unzipping corpora/smultron.zip. [nltk_data] | Downloading package snowball_data to [nltk_data] | /root/nltk_data... [nltk_data] | Downloading package spanish_grammars to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping grammars/spanish_grammars.zip. [nltk_data] | Downloading package state_union to /root/nltk_data... [nltk_data] | Unzipping corpora/state_union.zip. [nltk_data] | Downloading package stopwords to /root/nltk_data... [nltk_data] | Unzipping corpora/stopwords.zip. [nltk_data] | Downloading package subjectivity to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/subjectivity.zip. [nltk_data] | Downloading package swadesh to /root/nltk_data... [nltk_data] | Unzipping corpora/swadesh.zip. [nltk_data] | Downloading package switchboard to /root/nltk_data... [nltk_data] | Unzipping corpora/switchboard.zip. [nltk_data] | Downloading package tagsets to /root/nltk_data... [nltk_data] | Unzipping help/tagsets.zip. [nltk_data] | Downloading package timit to /root/nltk_data... [nltk_data] | Unzipping corpora/timit.zip. [nltk_data] | Downloading package toolbox to /root/nltk_data... [nltk_data] | Unzipping corpora/toolbox.zip. [nltk_data] | Downloading package treebank to /root/nltk_data... [nltk_data] | Unzipping corpora/treebank.zip. [nltk_data] | Downloading package twitter_samples to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/twitter_samples.zip. [nltk_data] | Downloading package udhr to /root/nltk_data... [nltk_data] | Unzipping corpora/udhr.zip. [nltk_data] | Downloading package udhr2 to /root/nltk_data... [nltk_data] | Unzipping corpora/udhr2.zip. [nltk_data] | Downloading package unicode_samples to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping corpora/unicode_samples.zip. [nltk_data] | Downloading package universal_tagset to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping taggers/universal_tagset.zip. [nltk_data] | Downloading package universal_treebanks_v20 to [nltk_data] | /root/nltk_data... [nltk_data] | Downloading package vader_lexicon to [nltk_data] | /root/nltk_data... [nltk_data] | Downloading package verbnet to /root/nltk_data... [nltk_data] | Unzipping corpora/verbnet.zip. [nltk_data] | Downloading package verbnet3 to /root/nltk_data... [nltk_data] | Unzipping corpora/verbnet3.zip. [nltk_data] | Downloading package webtext to /root/nltk_data... [nltk_data] | Unzipping corpora/webtext.zip. [nltk_data] | Downloading package wmt15_eval to /root/nltk_data... [nltk_data] | Unzipping models/wmt15_eval.zip. [nltk_data] | Downloading package word2vec_sample to [nltk_data] | /root/nltk_data... [nltk_data] | Unzipping models/word2vec_sample.zip. [nltk_data] | Downloading package wordnet to /root/nltk_data... [nltk_data] | Downloading package wordnet2021 to /root/nltk_data... [nltk_data] | Downloading package wordnet2022 to /root/nltk_data... [nltk_data] | Unzipping corpora/wordnet2022.zip. [nltk_data] | Downloading package wordnet31 to /root/nltk_data... [nltk_data] | Downloading package wordnet_ic to /root/nltk_data... [nltk_data] | Unzipping corpora/wordnet_ic.zip. [nltk_data] | Downloading package words to /root/nltk_data... [nltk_data] | Unzipping corpora/words.zip. [nltk_data] | Downloading package ycoe to /root/nltk_data... [nltk_data] | Unzipping corpora/ycoe.zip. [nltk_data] | [nltk_data] Done downloading collection all
True
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
import warnings
!pip install pandas_profiling
from pandas_profiling import ProfileReport
import plotly.express as px
import plotly.graph_objects as go
import seaborn as sns
from scipy import stats
!pip install colorama
from colorama import Fore, Back, Style
from sklearn.model_selection import train_test_split
from sklearn.metrics import confusion_matrix, accuracy_score
from plotly.offline import plot, iplot, init_notebook_mode
import plotly.graph_objs as go
from plotly.subplots import make_subplots
import plotly.express as px
from statsmodels.formula.api import ols
import plotly.graph_objs as gobj
init_notebook_mode(connected=True)
warnings.filterwarnings("ignore")
import plotly.figure_factory as ff
%matplotlib inline
import xgboost
import lightgbm
from sklearn.svm import SVC
from sklearn.ensemble import GradientBoostingClassifier
from sklearn.ensemble import RandomForestClassifier
from sklearn.tree import DecisionTreeClassifier
from sklearn.neighbors import KNeighborsClassifier
from sklearn.linear_model import LogisticRegression
!pip install catboost
from catboost import CatBoostClassifier
Collecting pandas_profiling
Downloading pandas_profiling-3.6.6-py2.py3-none-any.whl (324 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 324.4/324.4 kB 3.9 MB/s eta 0:00:00
Collecting ydata-profiling (from pandas_profiling)
Downloading ydata_profiling-4.5.1-py2.py3-none-any.whl (357 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 357.3/357.3 kB 31.2 MB/s eta 0:00:00
Requirement already satisfied: scipy<1.12,>=1.4.1 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (1.11.2)
Requirement already satisfied: pandas!=1.4.0,<2.1,>1.1 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (1.5.3)
Requirement already satisfied: matplotlib<4,>=3.2 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (3.7.1)
Requirement already satisfied: pydantic<2,>=1.8.1 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (1.10.12)
Requirement already satisfied: PyYAML<6.1,>=5.0.0 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (6.0.1)
Requirement already satisfied: jinja2<3.2,>=2.11.1 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (3.1.2)
Collecting visions[type_image_path]==0.7.5 (from ydata-profiling->pandas_profiling)
Downloading visions-0.7.5-py3-none-any.whl (102 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 102.7/102.7 kB 11.7 MB/s eta 0:00:00
Requirement already satisfied: numpy<1.24,>=1.16.0 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (1.23.5)
Collecting htmlmin==0.1.12 (from ydata-profiling->pandas_profiling)
Downloading htmlmin-0.1.12.tar.gz (19 kB)
Preparing metadata (setup.py) ... done
Collecting phik<0.13,>=0.11.1 (from ydata-profiling->pandas_profiling)
Downloading phik-0.12.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (679 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 679.5/679.5 kB 41.6 MB/s eta 0:00:00
Requirement already satisfied: requests<3,>=2.24.0 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (2.31.0)
Requirement already satisfied: tqdm<5,>=4.48.2 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (4.66.1)
Requirement already satisfied: seaborn<0.13,>=0.10.1 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (0.12.2)
Collecting multimethod<2,>=1.4 (from ydata-profiling->pandas_profiling)
Downloading multimethod-1.10-py3-none-any.whl (9.9 kB)
Requirement already satisfied: statsmodels<1,>=0.13.2 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (0.14.0)
Collecting typeguard<3,>=2.13.2 (from ydata-profiling->pandas_profiling)
Downloading typeguard-2.13.3-py3-none-any.whl (17 kB)
Collecting imagehash==4.3.1 (from ydata-profiling->pandas_profiling)
Downloading ImageHash-4.3.1-py2.py3-none-any.whl (296 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 296.5/296.5 kB 26.5 MB/s eta 0:00:00
Requirement already satisfied: wordcloud>=1.9.1 in /usr/local/lib/python3.10/dist-packages (from ydata-profiling->pandas_profiling) (1.9.2)
Collecting dacite>=1.8 (from ydata-profiling->pandas_profiling)
Downloading dacite-1.8.1-py3-none-any.whl (14 kB)
Requirement already satisfied: PyWavelets in /usr/local/lib/python3.10/dist-packages (from imagehash==4.3.1->ydata-profiling->pandas_profiling) (1.4.1)
Requirement already satisfied: pillow in /usr/local/lib/python3.10/dist-packages (from imagehash==4.3.1->ydata-profiling->pandas_profiling) (9.4.0)
Requirement already satisfied: attrs>=19.3.0 in /usr/local/lib/python3.10/dist-packages (from visions[type_image_path]==0.7.5->ydata-profiling->pandas_profiling) (23.1.0)
Requirement already satisfied: networkx>=2.4 in /usr/local/lib/python3.10/dist-packages (from visions[type_image_path]==0.7.5->ydata-profiling->pandas_profiling) (3.1)
Collecting tangled-up-in-unicode>=0.0.4 (from visions[type_image_path]==0.7.5->ydata-profiling->pandas_profiling)
Downloading tangled_up_in_unicode-0.2.0-py3-none-any.whl (4.7 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 4.7/4.7 MB 86.9 MB/s eta 0:00:00
Requirement already satisfied: MarkupSafe>=2.0 in /usr/local/lib/python3.10/dist-packages (from jinja2<3.2,>=2.11.1->ydata-profiling->pandas_profiling) (2.1.3)
Requirement already satisfied: contourpy>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib<4,>=3.2->ydata-profiling->pandas_profiling) (1.1.0)
Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.10/dist-packages (from matplotlib<4,>=3.2->ydata-profiling->pandas_profiling) (0.11.0)
Requirement already satisfied: fonttools>=4.22.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib<4,>=3.2->ydata-profiling->pandas_profiling) (4.42.1)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib<4,>=3.2->ydata-profiling->pandas_profiling) (1.4.5)
Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib<4,>=3.2->ydata-profiling->pandas_profiling) (23.1)
Requirement already satisfied: pyparsing>=2.3.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib<4,>=3.2->ydata-profiling->pandas_profiling) (3.1.1)
Requirement already satisfied: python-dateutil>=2.7 in /usr/local/lib/python3.10/dist-packages (from matplotlib<4,>=3.2->ydata-profiling->pandas_profiling) (2.8.2)
Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.10/dist-packages (from pandas!=1.4.0,<2.1,>1.1->ydata-profiling->pandas_profiling) (2023.3.post1)
Requirement already satisfied: joblib>=0.14.1 in /usr/local/lib/python3.10/dist-packages (from phik<0.13,>=0.11.1->ydata-profiling->pandas_profiling) (1.3.2)
Requirement already satisfied: typing-extensions>=4.2.0 in /usr/local/lib/python3.10/dist-packages (from pydantic<2,>=1.8.1->ydata-profiling->pandas_profiling) (4.5.0)
Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2.24.0->ydata-profiling->pandas_profiling) (3.2.0)
Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2.24.0->ydata-profiling->pandas_profiling) (3.4)
Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2.24.0->ydata-profiling->pandas_profiling) (2.0.4)
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests<3,>=2.24.0->ydata-profiling->pandas_profiling) (2023.7.22)
Requirement already satisfied: patsy>=0.5.2 in /usr/local/lib/python3.10/dist-packages (from statsmodels<1,>=0.13.2->ydata-profiling->pandas_profiling) (0.5.3)
Requirement already satisfied: six in /usr/local/lib/python3.10/dist-packages (from patsy>=0.5.2->statsmodels<1,>=0.13.2->ydata-profiling->pandas_profiling) (1.16.0)
Building wheels for collected packages: htmlmin
Building wheel for htmlmin (setup.py) ... done
Created wheel for htmlmin: filename=htmlmin-0.1.12-py3-none-any.whl size=27081 sha256=3828505ddf804092a9e060091ffd5bb108d5438605928672f13d91c331e149c4
Stored in directory: /root/.cache/pip/wheels/dd/91/29/a79cecb328d01739e64017b6fb9a1ab9d8cb1853098ec5966d
Successfully built htmlmin
Installing collected packages: htmlmin, typeguard, tangled-up-in-unicode, multimethod, dacite, imagehash, visions, phik, ydata-profiling, pandas_profiling
Successfully installed dacite-1.8.1 htmlmin-0.1.12 imagehash-4.3.1 multimethod-1.10 pandas_profiling-3.6.6 phik-0.12.3 tangled-up-in-unicode-0.2.0 typeguard-2.13.3 visions-0.7.5 ydata-profiling-4.5.1
Collecting colorama
Downloading colorama-0.4.6-py2.py3-none-any.whl (25 kB)
Installing collected packages: colorama
Successfully installed colorama-0.4.6
Collecting catboost
Downloading catboost-1.2.2-cp310-cp310-manylinux2014_x86_64.whl (98.7 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 98.7/98.7 MB 9.1 MB/s eta 0:00:00
Requirement already satisfied: graphviz in /usr/local/lib/python3.10/dist-packages (from catboost) (0.20.1)
Requirement already satisfied: matplotlib in /usr/local/lib/python3.10/dist-packages (from catboost) (3.7.1)
Requirement already satisfied: numpy>=1.16.0 in /usr/local/lib/python3.10/dist-packages (from catboost) (1.23.5)
Requirement already satisfied: pandas>=0.24 in /usr/local/lib/python3.10/dist-packages (from catboost) (1.5.3)
Requirement already satisfied: scipy in /usr/local/lib/python3.10/dist-packages (from catboost) (1.11.2)
Requirement already satisfied: plotly in /usr/local/lib/python3.10/dist-packages (from catboost) (5.15.0)
Requirement already satisfied: six in /usr/local/lib/python3.10/dist-packages (from catboost) (1.16.0)
Requirement already satisfied: python-dateutil>=2.8.1 in /usr/local/lib/python3.10/dist-packages (from pandas>=0.24->catboost) (2.8.2)
Requirement already satisfied: pytz>=2020.1 in /usr/local/lib/python3.10/dist-packages (from pandas>=0.24->catboost) (2023.3.post1)
Requirement already satisfied: contourpy>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib->catboost) (1.1.0)
Requirement already satisfied: cycler>=0.10 in /usr/local/lib/python3.10/dist-packages (from matplotlib->catboost) (0.11.0)
Requirement already satisfied: fonttools>=4.22.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib->catboost) (4.42.1)
Requirement already satisfied: kiwisolver>=1.0.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib->catboost) (1.4.5)
Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib->catboost) (23.1)
Requirement already satisfied: pillow>=6.2.0 in /usr/local/lib/python3.10/dist-packages (from matplotlib->catboost) (9.4.0)
Requirement already satisfied: pyparsing>=2.3.1 in /usr/local/lib/python3.10/dist-packages (from matplotlib->catboost) (3.1.1)
Requirement already satisfied: tenacity>=6.2.0 in /usr/local/lib/python3.10/dist-packages (from plotly->catboost) (8.2.3)
Installing collected packages: catboost
Successfully installed catboost-1.2.2
Data & Exploratory Data Analysis
# import pandas as pd
# # Load the CSV data
# hits_data = pd.read_csv("/home/mr-cern/Desktop/Python/News_Final.csv")
# # Sample a fraction of the data (e.g., 30%)
# sampled_data = hits_data.sample(frac=0.05, random_state=42) # Adjust the fraction as needed
# # Save the sampled data to a new CSV file
# sampled_data=sampled_data.to_csv("/home/mr-cern/Desktop/Python/Sampled_News_Final.csv", index=False)
sampled_data = pd.read_csv("/content/Sampled_News_Final.csv")
sampled_data.head()
| IDLink | Title | Headline | Source | Topic | PublishDate | SentimentTitle | SentimentHeadline | GooglePlus | |||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 68153.0 | Obama, Nerd President, Needs to Get Right With... | President Barack Obama knocked off work on Fri... | Wall Street Journal (blog) | obama | 2015-12-21 16:46:40 | 0.067168 | -0.062808 | 100 | 1 | 0 |
| 1 | 47207.0 | Johannesburg committed to developing job inten... | THE City of Johannesburg has committed itself ... | BDlive | economy | 2016-05-04 12:41:17 | -0.039591 | -0.024436 | 4 | 1 | 2 |
| 2 | 71039.0 | Whose President Was He? | """If I spent all my time thinking about it, I... | POLITICO Magazine | obama | 2016-01-07 00:00:00 | 0.000000 | 0.408575 | 87 | 1 | 1 |
| 3 | 44514.0 | Argentina pays off 'holdout' bondholders, elev... | In recent years, soybean farmer Mario Caceres ... | Los Angeles Times | economy | 2016-04-23 11:01:15 | -0.101852 | 0.437500 | -1 | 0 | 3 |
| 4 | 98795.0 | Obama: Trump displays ignorance, seeks tweets ... | U.S. President Barack Obama disparaged U.S. Re... | PoliticusUSA | obama | 2016-05-28 13:35:28 | 0.000000 | 0.000000 | 181 | 16 | 1 |
print(sampled_data.isnull().sum()) ## Checking null values in data and filling those values
sampled_data.fillna(0)
IDLink 0 Title 0 Headline 2 Source 18 Topic 0 PublishDate 0 SentimentTitle 0 SentimentHeadline 0 Facebook 0 GooglePlus 0 LinkedIn 0 dtype: int64
| IDLink | Title | Headline | Source | Topic | PublishDate | SentimentTitle | SentimentHeadline | GooglePlus | |||
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 68153.0 | Obama, Nerd President, Needs to Get Right With... | President Barack Obama knocked off work on Fri... | Wall Street Journal (blog) | obama | 2015-12-21 16:46:40 | 0.067168 | -0.062808 | 100 | 1 | 0 |
| 1 | 47207.0 | Johannesburg committed to developing job inten... | THE City of Johannesburg has committed itself ... | BDlive | economy | 2016-05-04 12:41:17 | -0.039591 | -0.024436 | 4 | 1 | 2 |
| 2 | 71039.0 | Whose President Was He? | """If I spent all my time thinking about it, I... | POLITICO Magazine | obama | 2016-01-07 00:00:00 | 0.000000 | 0.408575 | 87 | 1 | 1 |
| 3 | 44514.0 | Argentina pays off 'holdout' bondholders, elev... | In recent years, soybean farmer Mario Caceres ... | Los Angeles Times | economy | 2016-04-23 11:01:15 | -0.101852 | 0.437500 | -1 | 0 | 3 |
| 4 | 98795.0 | Obama: Trump displays ignorance, seeks tweets ... | U.S. President Barack Obama disparaged U.S. Re... | PoliticusUSA | obama | 2016-05-28 13:35:28 | 0.000000 | 0.000000 | 181 | 16 | 1 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 4657 | 7462.0 | Early action on city region deals needed to fu... | Scottish and UK governments have been urged to... | Aberdeen Press and Journal | economy | 2015-12-07 09:20:15 | 0.113067 | -0.087603 | 2 | 1 | 4 |
| 4658 | 91183.0 | The True Face of Students for Justice in Pales... | What happened on April 12 at the University of... | Jerusalem Post Israel News (blog) | palestine | 2016-04-19 22:16:15 | -0.198148 | 0.006514 | 25 | 0 | 0 |
| 4659 | 71672.0 | Ted Cruz to Skip Obama's Final State of the Union | RTR4M87B Ted Cruz will not attend President Ba... | Newsweek | obama | 2016-01-11 18:24:46 | -0.188858 | -0.204124 | 43 | 1 | 0 |
| 4660 | 21630.0 | Business owners' confidence in economy is sinking | In its recent Emerging Stronger report the Ont... | NorthernLife.ca | economy | 2016-02-02 15:20:27 | 0.023623 | 0.055902 | 3 | 0 | 0 |
| 4661 | 48567.0 | Microsoft Acquires Italian Tech Company, Plans... | News Microsoft announced the acquisition of So... | Manufacturing.net | microsoft | 2016-05-10 10:17:00 | 0.079057 | -0.069929 | 1 | 1 | 12 |
4662 rows × 11 columns
## Uniique values for selected columns
def unique_values_in_columns(data_frame, columns):
if isinstance(columns, str):
columns = [columns]
unique_values_dict = {}
nunique_values_dict={}
for column in columns:
unique_values_dict[column] = data_frame[column].unique().tolist()
nunique_values_dict[column] = data_frame[column].nunique()
print(nunique_values_dict)
return unique_values_dict
# Find unique values in selected columns
selected_columns = ["Source","Topic","Facebook","GooglePlus","LinkedIn"]
unique_values = unique_values_in_columns(hits_data, selected_columns)
# Print the unique values for selected columns
for column, values in unique_values.items():
print(f"Unique values in '{column}': {values}")
{'Source': 1435, 'Topic': 4, 'Facebook': 572, 'GooglePlus': 102, 'LinkedIn': 225}
Unique values in 'Source': ['Wall Street Journal (blog)', 'BDlive', 'POLITICO Magazine', 'Los Angeles Times', 'PoliticusUSA', 'Financial Post', 'Bloomberg', 'The Straits Times', 'WinBeta', 'Good Morning America via Yahoo! News', 'CNET', 'Chandigarh Tribune', 'Ahlul Bayt News Agency (press release)', 'Tribune-Review', 'GMA News', 'Jerusalem Post Israel News', 'Charisma News', 'Forbes', 'BusinessDay', 'The Star, Kenya', 'The Rock Hill Herald', 'International Business Times', 'Western Journalism', 'Business Insider', 'The Hill', 'PC World', 'Channel News Asia', 'Telegraph.co.uk', 'Reuters via Yahoo! Finance', 'The Guardian', 'Wired UK', 'Entertainment Weekly', 'Reuters', 'StreetAuthority Network via Yahoo! Finance', 'Politico', 'New York Post', 'Casper Star-Tribune Online', 'MobiPicker', 'Digital Trends via Yahoo! Finance', 'rediff.com', 'WND.com', 'EMQ', 'The Hindu', 'NBCNews.com', 'ABC News', 'Financial Times', 'Economic Times', 'AFP via Yahoo! News', 'The Wall Street Journal', 'Huffington Post', 'SC Magazine UK', 'Shanghai Daily (subscription)', 'Middle East Eye', 'TrustedReviews', 'Thurrott.com (blog)', 'Washington Post', 'Irish Examiner', 'Herald Scotland', 'TASS', 'The Hill (blog)', 'Independent Online', 'SiliconANGLE (blog)', 'CIO', 'Globalnews.ca', 'ForexLive', 'Manila Standard Today', 'Black Enterprise', 'Minneapolis-St. Paul Star Tribune', 'Arutz Sheva', 'NBC NEWS', 'NDTV', 'Center For American Progress', 'BBC News', 'Newsday', 'Haaretz', 'UPROXX', 'The Mercury', 'AFP via Yahoo!7 News', 'Fox News', 'CoinDesk', 'Daily Caller', 'Times of Malta', 'Metro', 'Racked NY', '660 News', 'KBS WORLD Radio News', 'GhanaWeb', 'Business Wire via Yahoo! Finance', 'NPR', nan, 'Tallahassee.com', 'Washington Free Beacon', 'Daily Mail', 'Saskatoonhomepage.ca', 'Stuff', 'SlashGear', 'WBAL Baltimore', 'GQ Magazine', 'Apple Insider', 'AFP via Yahoo! India News', 'Digital Trends via Yahoo! News', 'Las Vegas Review-Journal', 'Seeking Alpha', 'FOX 4 News', 'Digital Trends via Yahoo! Sports', 'fox2now.com', 'Mobile World Live', 'Palestine Herald Press', 'MSNBC', 'Borderstan', 'Associated Press via Yahoo! Finance', 'Sacramento Bee', 'The Inquisitr', 'WTOC 11 Savannah', 'Polygon', 'The Seattle Times', 'Asia Times', 'Town Hall', 'Livemint', 'Reuters UK', 'Boston Herald', 'ABC Online', 'New Statesman', 'Christian Post', 'Hot Air', 'Dickinson Press', 'Inside Higher Ed (blog)', 'The American Prospect', 'The Daily Star', 'News.com.au', 'TheStreet.com', 'Nasdaq', 'Mother Jones', 'Council on Foreign Relations (blog)', 'Ahram Online', 'FrontPage Magazine', 'RealClearPolitics', 'International Business Times via Yahoo UK & Ireland News', 'THE BUSINESS TIMES', 'Latin Post', 'Wall Street Journal', 'Intifada Palestine', 'The Huffington Post', 'Yahoo! Maktoob News', 'City A.M.', 'The Zimbabwean', 'Marketwired via Yahoo! Finance', 'LifeNews.com', 'The Express Tribune', 'Cornell Chronicle', 'New York Times', 'TPM', 'China Economic Net', 'Middle East Monitor', 'RT', 'GeekWire', 'The Register', 'Variety', 'The Trace', 'U.S. News & World Report', 'New Vision', 'Windows Central', 'Truthdig', 'Market Realist via Yahoo! Finance', 'The Verge via Yahoo! News', 'Whitehouse.gov (press release)', 'Computer Business Review', 'Yahoo Finance', 'DailyPost Nigeria', 'Washington Times', 'Charlotte Observer', 'The Star Online', 'Swarajya', 'Denver Post', 'FOX13 Memphis', 'Outlook India', 'Chicago Tribune', 'Bloomberg via Yahoo! Finance', 'SalemNews.net', 'Digital Trends', 'San Antonio Express-News', 'Consumer Reports via Yahoo! Finance', 'Counsel & Heal', 'New Republic', 'ABS-CBNNEWS.com', 'BreakingNews.ie', 'CBC.ca', 'Nikkei Asian Review', 'Kuwait News Agency', 'CBS News', 'AOL News', 'Michigan State University Extension', 'The Washington Times', 'AllAfrica.com', 'World Bank Group', 'BusinessKorea', 'T.H.E. Journal', 'Utne Reader Online', 'The Age', 'Irish Independent', 'Daily Times', 'ABC 15 Phoenix', 'Daily Beast', 'TechCrunch', 'Daily Sabah', 'Market Watch', 'Arab News', 'Bulletin of the Atomic Scientists', 'Manila Bulletin', 'The Times of Israel', 'WTOP', 'CNN Money', 'ZDNet', 'Yahoo News', 'Bustle', 'CNN', 'The Inquirer', 'The Japan Times', 'India Infoline', 'IANS via Yahoo Maktoob News', 'Investorplace.com', 'Sputnik International', 'AFP via Yahoo!7 Finance', 'dailytelegraph.com.au', 'The White House (blog)', 'Chicago Sun-Times', 'Xinhua', 'Christian Science Monitor', 'Times of India', 'MSPoweruser.com', 'Power Line (blog)', 'USA TODAY', 'Sputnik UK', 'Fox Business', 'Fortune', 'Las Cruces Sun-News', 'Opposing Views', 'The Herald', 'Huffington Post UK', 'TechRadar', 'Wisconsin Public Radio News', 'InfoToday.com', 'Sify News', 'FXStreet', 'iT News', 'Business Insider via Yahoo! Finance', 'AFP via Yahoo! Finance', 'Associated Press via Yahoo Maktoob News', 'Reuters via Yahoo! Philippines News', 'Pocket-lint.com', 'Lowell Sun', 'The Verge', 'Himalayan Times', 'The Peak', 'Vanguard', 'OS News', 'New Zealand Herald', 'Mondoweiss', 'CNBC via Yahoo! Finance', 'WRAL.com', 'KOCO Oklahoma City', 'Sydney Morning Herald', 'Business in Vancouver', 'PoliticsHome.com', 'Al-Arabiya', 'Neowin', 'Newsmax', 'Investopedia', 'IBN live', 'The Christian Post', 'The Boston Globe', 'TechRepublic', 'Sabah Daily Express', 'Express.co.uk', 'Bristol Herald Courier (press release) (blog)', 'Eyewitness News', 'American Thinker (blog)', 'Zee News', 'The Sydney Morning Herald', 'New York Daily News', 'WPTZ The Champlain Valley', 'EE Times', 'Slate Magazine', 'Tehran Times', 'The Next Web', 'Softpedia News', 'The Holmes Report', 'WIRED', 'New Scientist', 'The National', 'Mashable', 'CNBC', 'Business Green', 'Khaleej Times', 'Yahoo Politics', 'Washington Examiner', 'The San Gabriel Valley Tribune', 'Hurriyet Daily News', 'Breitbart News', 'GlobeNewswire via Yahoo Canada Finance', 'Bangladesh News 24 hours', 'MeriTalk (blog)', 'The Atlantic', 'National Review Online', 'The Guardian Nigeria (satire) (press release) (blog)', 'CIO Insight', 'American Enterprise Institute', 'Zacks via Yahoo! Finance', 'WAFA - Palestine News Agency', 'KCRA 3 Sacramento', 'American Thinker', 'Business Recorder', 'IANS India Private Limited via Yahoo! India News', 'TIME', 'MarketWatch', 'Bidness ETC', 'International Business Times UK', 'Pamplin Media Group', 'Information Age', 'The Economist (blog)', 'The Forward', 'KLTV', 'VentureBeat', 'Greater Kashmir', 'The Week Magazine', 'Philippine Star', 'Globes Online', 'The Australian', 'TwinCities.com-Pioneer Press', 'CTV News', 'Reuters via Yahoo Maktoob News', 'The Globe and Mail (subscription)', 'Christian Today', 'Great Falls Tribune', 'WFXG.com', 'The Record', 'Channel NewsAsia', 'KYTX', 'The Echo', 'Comcast SportsNet Philadelphia', 'The Financial Express via Yahoo! Finance India', 'Reuters via Yahoo! India News', 'New America Media', 'Financial Market News', 'Topeka Capital Journal', 'Sun Sentinel', 'FourFourTwo via Yahoo Canada Sports', 'WAMC', 'Computerworld', 'Al-Monitor', 'Slashdot', 'Sputnik US', 'Market Realist via Yahoo! Finance India', 'AppAdvice', 'AAP via Yahoo!7 Finance', 'ITV News', 'Rappler', 'Sky News', 'Voice of America', 'Belarus Digest', 'Scotsman', 'Sustainable Brands', 'RushLimbaugh.com', 'Daily News Egypt', 'Moneycontrol.com', 'Business Wire via Yahoo Canada Finance', 'News West 9 Midland', 'Quartz', 'Bernama', 'The Christian Science Monitor', 'CNSNews.com', 'The Nation.', 'MIS Asia', 'Jakarta Post', 'gulfnews.com', 'Zacks.com', 'The Toledo Blade', 'The Sun Herald', 'Consequence of Sound (blog)', 'Bangkok Post', 'E-Pao.net', 'Yorkshire Post', 'Mediaite', 'WDSU New Orleans', 'La Crosse Tribune', 'Science Recorder', 'WAGM', 'Belfast Telegraph', 'Seattle Times', 'Lethbridge Herald', 'Center for Research on Globalization', 'Mail & Guardian Africa', 'The Epoch Times', 'WCCFtech', 'wlfi.com', 'CLTV Chicago', 'TVLine', 'Business Wire (press release)', 'KXNet.com', 'MENAFN', 'The New Yorker', 'Chattanooga Times Free Press', 'Boing Boing', 'Kennebec Journal & Morning Sentinel', 'Winnipeg Free Press', 'Palestine News Network', 'XXLMAG.COM', 'YIBADA English', 'CBS Local', 'Neurogadget', 'Business Insider via Yahoo! Finance India', 'The Intercept', 'Al-Manar TV', 'Tech Insider (blog)', 'ABC6OnYourSide.com', 'Channel4000.com', 'PBS NewsHour', 'Human Capital', 'Associated Press via Yahoo! News', 'Elko Daily Free Press', 'PR Newswire via Yahoo! Finance', 'Philly.com', 'CNET UK', 'International Middle East Media Center', 'PennLive.com', 'IGN', 'The Courier-Journal', 'Android Police', 'Right Wing Watch', 'Design & Trend', 'AMEinfo', 'Jacksonville Daily Progress', 'New Hampshire Union Leader', 'NME.com', 'Military Times', 'Media Matters for America', 'groovyPost', 'Mobile Choice', 'Grist', 'News24', 'CNN International', 'AAP via Yahoo! New Zealand News', 'Columbus Dispatch', 'BetaNews', 'Billings Gazette', 'PCWorld', 'Concord Monitor', 'AlterNet', 'ETFinalScore.com', 'Zimbabwe Independent', 'Morning Consult', 'MyCentralJersey.com', 'Digital Spy', 'Network World', 'Lexington Herald-Leader', 'Yahoo7 News', 'Sault Star', 'Environmental Working Group', 'The Borneo Post', 'rabble.ca (blog)', 'AP via Yahoo! New Zealand News', 'InformationWeek', 'NewsOK.com', 'The West Australian', 'CNNMoney', 'ChicagoNow (blog)', "Crain's Detroit Business (blog)", 'azcentral.com', 'Washington Post (blog)', 'Thomson Reuters Foundation', 'Denver Business Journal (blog)', 'BuzzFeed News', 'CounterPunch', 'TheTower.org', 'GlobeNewswire via Yahoo! Finance', 'Deadline', 'Dallas Morning News (blog)', 'The Electronic Intifada', 'Twitchy', 'Toronto Star', 'Anadolu Agency', 'Tech Times', 'The Brussels Times', 'TheBlaze.com', 'Investing.com', 'Daily Signal', 'Channel Partners', 'Salon.com', 'Nuvo', 'Omaha World-Herald', 'The Local.fr', 'WJXT Jacksonville', 'Engadget', 'The Times (subscription)', 'TWCN Tech News (blog)', 'Benzinga via Yahoo! Finance', 'Business Standard', 'RealClearMarkets', 'CityLab', 'AngolaPress', 'VR-Zone', 'Politicsweb', 'FOXSports.com', 'New York Sun', 'wwlp.com', 'Reuters via Yahoo Canada News', 'Computerworld New Zealand', 'Broadcasting & Cable', 'www.worldbulletin.net', 'ANTARA', 'teleSUR English', 'Emirates 24|7', 'The New Zealand Herald', 'Raw Story', 'NSEAVoice.com', 'Press and Journal', 'Toronto Sun', 'Australia Network News', 'Daily Star Gazette', 'HardwareZone', 'Motley Fool', 'FIBA', 'The Hillsdale Daily News', 'fox13now.com', 'Businessinsider India', 'Business Insider via Yahoo Maktoob News', 'SBS', 'New Matilda', 'KLTV 7 Tyler', 'Associated Press via Yahoo! Singapore Sports', 'PR Newswire (press release)', 'Destructoid', 'Redmondmag.com', 'Charleston Post Courier', 'PSFK (blog)', 'The Australian Financial Review', 'Observer', 'The Business Times Singapore', 'DNA India', 'Salon', 'Security Intelligence (blog)', 'The Arab Daily News', 'Kyiv Post', 'Aljazeera.com', 'IT PRO', 'South China Morning Post', 'Berkshire Eagle (subscription)', 'Irish Times', 'Material Handling & Logistics', 'PA Money News via Yahoo UK & Ireland Finance', 'Triad Business Journal (blog)', 'Business Insurance', 'Milwaukee Journal Sentinel', 'Russia Beyond the Headlines', 'Ghacks Technology News', 'New York Times Finance', 'BT.com', 'Georgia Today', 'Montreal Gazette', 'Business Wire via Yahoo UK & Ireland Finance', 'Times Higher Education (THE)', 'Fox Sports', 'Inside Higher Ed', "Alabama's News Leader", 'Inverse', 'KCTV 5 Kansas City', 'The Detroit News', 'East Bay Times', 'Asbury Park Press', 'Mississippi Business Journal', 'NewsBusters (blog)', 'WGNO', "Today's Zaman", 'Inquirer', 'ABI Research (press release) (subscription) (blog)', 'LinuxInsider.com', 'The Korea Herald', 'Stuff.co.nz', 'Courier Mail', 'KGTV San Diego', 'Firstpost', 'Daily News & Analysis', 'Government Technology', 'Lifehacker Australia', 'Ottawa Citizen', 'Scoop.co.nz (press release)', 'WTHR Indianapolis', 'Chicago Daily Herald', 'Computer World Australia', 'BGR News via Yahoo! News', 'Wyoming Business Report', 'Sun-Sentinel', "Barron's (blog)", 'WBUR', 'New Straits Times Online', 'fox6now.com', 'WMPoweruser.com', 'KTRE Lufkin and Nacogdoches', 'Times Daily', 'Devex', 'OregonLive.com', 'Business Insider Australia', 'WTMJ-TV (press release) (registration) (blog)', 'American Spectator', 'The Jewish Press', 'Focus Taiwan News Channel', 'Windows IT Pro', 'FierceCIO', 'Monitor Online (blog)', 'TechTarget', 'The Journal News | LoHud.com', '10TV', 'Ars Technica', 'The Rebel', 'The News Tribune', 'Game Informer', 'RTÉ News', 'Game Rant', 'The Irish Times', 'The Nation', 'Bloomberg via Yahoo!7 Finance', 'TechSpot', 'GlobeNewswire (press release)', 'CNN.com', 'Develop', 'ladepeche.fr', 'Manchester Evening News', 'China Daily', 'Reuters via Yahoo! News', 'Castanet.net', 'Techcrunch', 'Daily Kos', 'NorthJersey.com', 'SiliconANGLE', 'Fight Back! Newspaper', 'CNBC (subscription)', 'Marketwired (press release)', 'Reuters Africa', 'WKBN.com', 'NEWS.com.au', 'AL.com', 'ProgrammableWeb', 'National Geographic', 'Fudzilla (blog)', 'AFP via Yahoo! New Zealand News', 'Gizmodo', 'PC Magazine', 'StepFeed', 'Dallas Morning News', 'Education Week (subscription) (blog)', 'People Magazine', 'The Indian Express', 'TechEye', 'Marketing Land', 'Cape Breton Post', 'Mehr News Agency - English Version', 'KVUE.com', 'The Globe and Mail', 'Times of Oman', 'MediaPost Communications', 'The Conversation UK', 'Quartz via Yahoo! Finance', 'Newsweek', 'The Denver Channel', 'Atlanta Business Chronicle', 'Harvard Business Review', 'Hindu Business Line', 'Kiplinger Personal Finance', 'Bloomberg via Yahoo! New Zealand Finance', 'Canada.com', 'ITProPortal', 'The Canadian Press via Yahoo Canada News', 'Business 2 Community', 'The Federalist', 'Ghanaweb.com', 'Tasnim News Agency (press release)', 'Fox Business via Yahoo! Finance', 'Environmental Leader', 'Slate Magazine (blog)', 'The Fiscal Times via Yahoo! Finance', 'Associated Press via Yahoo! Philippines News', 'MLive.com', 'InfoWorld', 'Softpedia News (blog)', 'Tech2', 'Lincoln Journal Star', 'Financial Express', 'The Economist', 'The Independent', 'WCVB Boston', 'Independent Media Review Analysis (IMRA)', 'Telecompaper (subscription)', 'Richmond Times-Dispatch', 'New York Magazine', 'Indiana's NewsCenter', 'The Fiscal Times', 'The Week UK', 'West Virginia MetroNews', 'Deadline Hollywood', "Investor's Business Daily", 'EJ Insight', 'IB Times via Yahoo UK & Ireland News', 'NJ.com', 'ETF Daily News', 'Gallup', 'Russian Information Agency Novosti', 'Intelligence Online (subscription)', 'Cato Institute', 'Today.com', 'The Denver Post', 'Queensland Country Life', 'reNews', 'Fox News Latino', 'Local 8 Now', 'Vancouver Sun', 'WSFA 12 Montgomery', 'Hybrid Cars News', 'CBC via Yahoo Canada News', 'Hungary Today', 'TCC', 'TheWrap', 'Bloomberg Government (blog)', 'South China Morning Post (subscription)', 'NBC Bay Area', 'Malay Mail Online', 'Oneindia', 'Vox', 'Reuters via Yahoo UK & Ireland News', 'Yibada (English Edition)', 'CBS Sports', 'FOX News Radio (blog)', 'In-Cyprus (press release) (subscription) (blog)', 'Yorkton News Review', 'Money Morning Australia', 'News On 6', 'PolitiFact', 'Associated Press via Yahoo UK & Ireland News', 'Reporters without borders (press release)', 'Columbus Ledger-Enquirer', 'Boston Business Journal (blog)', 'Straight.com', 'Moberly Monitor-Index', 'CommonSpace', 'News & Observer', 'Huffington Post Canada', 'Al-Ahram Weekly', 'Buffalo News', 'The Atlantic via Yahoo! News', 'ENPI Info Centre', 'Press-Enterprise', 'Attack of the Fanboy', 'euronews', 'Cape Business News', 'AFP Relax News via Yahoo! News', 'Muncie Star Press', 'Pakistan Observer', 'Jezebel', 'Fast Company', 'Austin American-Statesman', 'ESPNcricinfo.com', 'Al Jazeera via Yahoo Maktoob News', 'Philly.com (blog)', 'Tech Media Network (Tom's Guide) via Yahoo! News', 'Android Authority (blog)', 'The ', '+972 Magazine', 'THISDAY Live', 'WAPT Jackson', 'EurekAlert!', 'SNAPPA Technology via Yahoo UK & Ireland News', 'Al Jazeera America', 'MacNN', 'India Today', 'NAIJ.COM', 'The Weekly Standard', 'Morning Star Online', 'malaysiandigest.com', 'Miami Herald', 'U-T San Diego', 'Techworm', 'Morningstar', 'Zolmax', 'TechRitual', 'KOLO', 'Your Houston News (blog)', 'Radio New Zealand', 'Forward', 'NBCSports.com', 'KERA North Texas', 'ARNnet', 'Greensboro News & Record', 'Tuscaloosa News (subscription)', 'WGAL 8 Susquehanna Valley', 'Kansas City Business Journal', '9NEWS.com', 'Tempo.co', 'wivb.com', 'Democracy Now!', 'CKGSB Knowledge', 'Prague Post', 'TechRepublic via Yahoo! News', 'Patriot Post', 'KAUZ-TV', 'TeenVogue.com', 'NewsDay', 'Vancouver Sun (blog)', 'Scroll.in', 'ANI via Yahoo! India News', 'CBS 6 Richmond', 'Eurasia Review', 'Daily Record', 'Green Left Weekly', 'Catholic News Agency', 'Laptop Mag', 'ValueWalk', ' ', 'seattlepi.com', 'BLABBERMOUTH.NET', 'Mintpress News (blog)', 'The Coloradoan', 'Johnson City Press', 'NBC Chicago', 'eWeek', 'Bleeding Cool News', 'Out-Law', 'CNW Group via Yahoo Canada Finance', 'Crookston Daily Times', 'FOX 61', 'The Guardian (blog)', 'AAP via Yahoo!7 News', 'Gazette News', 'Pravda', 'VG247', 'MarketPulse (blog)', 'FOX 28 South Bend', 'Committee for Accuracy in Middle East Reporting in America (blog)', 'Inquirer.net', 'The Standard', 'AAP via Yahoo! New Zealand Finance', 'Strategy Page', 'VOA News', 'Huffington Post (blog)', 'China.org.cn', 'Workers World', 'Free Malaysia Today', 'TechNewsWorld', 'Starr 103.5 FM', 'Valley News', 'SooToday.com', 'FT Alphaville (registration)', 'Wall Street Journal (subscription)', 'International Business Times, India Edition', 'MRCTV (blog)', 'bit-tech.net', 'Saskatoon StarPhoenix', 'KSHB-TV Kansas City', 'NT News', 'Livingston Daily', 'Calgary Herald', 'The Hilltop News', 'The Desert Sun', 'The Chicago Maroon', '9 to 5 Mac', 'MSDynamicsWorld.com', 'Niagara Falls Review', 'Yahoo Finance UK', 'News On 6 Tulsa', 'Business Insider via Yahoo UK & Ireland Finance', 'Finextra (press release)', 'Adweek', 'The New American', 'Hindustan Times', 'Redress Information & Analysis', 'NextShark', 'Press Release Rocket', 'StreetInsider.com', 'Belleville News-Democrat', 'GMA News Online', 'Daily Pakistan', '9 to 5 Mac (press release)', 'TMZ.com', 'Phone Arena', 'The Tennessean', 'The Coast', 'Deccan Chronicle', 'The Conversation AU', 'Insurance Journal', 'Southernminn.com', 'Gulf Today', 'The Punch', 'Times LIVE', 'ComputerworldUK', 'The Fresno Bee', 'Brookings Institution', 'AnandTech', 'Atlanta Journal Constitution', 'Wired News', 'American Free Press', 'USA Today', 'Ozy via Yahoo! News', 'The News-Press', 'Czech Happenings', 'Newstalk 106-108 fm', 'The Daily Vox (blog)', 'International New York Times', 'Jewish Telegraphic Agency', 'LBC 97.3', 'KGO-TV Bay Area', 'V3.co.uk', 'The Scotsman', 'The Canadian Press via Yahoo Canada Finance', '89.3 KPCC', 'Forbes via Yahoo! Finance', 'Metrotvnews.com', 'wigantoday.net', 'MetroWest Daily News', 'Bucks.com', 'Autoblog (blog)', 'Market Realist via Yahoo UK & Ireland Finance', 'ReadWrite', 'The News-Times', 'bnn.ca', 'WWD', 'Straight.com (blog)', 'AzerNews', 'San Angelo Standard Times', 'ArabianBusiness.com', 'The News International', 'SiliconIndia', 'Profit Confidential', 'The San Diego Union-Tribune', 'Huffington Post Australia', 'Parksville Qualicum Beach News', 'Chillicothe Gazette', 'Wonkette (satire) (blog)', 'U.S. News & World Report (blog)', 'Eurogamer.net', 'CIO Today', 'Morning Journal News', 'WANE', 'Tech Insider via Yahoo UK & Ireland News', 'the Irish News', 'UPI.com', 'AS/COA Online', 'FOX 8 WGHP', 'OneNewsNow', 'WNBA.com', 'The News Herald', 'The Root', 'The Weekly Standard (blog)', 'Otago Daily Times', 'Viet Nam News', 'Le T\x9d\x9dl\x9d\x9dgramme', 'Hollywood Reporter', 'Antiwar.com', 'Yakima Herald-Republic', 'Columbia Daily Tribune', 'Associated Press via Yahoo! Singapore News', 'BigPond News', 'Ukraine Today', 'Passport Magazine', 'NBC4i.com', 'Salt Lake Tribune', 'For The Win', 'DesMoinesRegister.com', 'CityNews', 'Associated Press via Yahoo!7 Finance', 'The Daily Mining Gazette', 'The Press', 'Yahoo Autos', 'Reuters Middle East via Yahoo Maktoob News', 'Associated Press via Yahoo UK & Ireland Finance', 'ABS CBN News', 'ATTN', 'MyDaytonDailyNews', 'Al-Bawaba', 'Spiked', 'Daily Reckoning - Australian Edition', 'Redmond Channel Partner', 'Ynetnews', 'Deutsche Welle', 'Business Mirror', 'Smithsonian', 'ABC News via Yahoo! News', 'GreenBiz', 'AdAge.com', 'Equal Times', 'Know Your Mobile', 'Zacks via Yahoo!7 Finance', 'European Parliament (press release)', 'thejournal.ie', 'The Marijuana Times', 'Texarkana Gazette', 'Worcester Telegram', 'Bearing Arms', 'World Socialist Web Site', 'Scoop.co.nz', 'Sportsnet.ca', 'Cops 2.0', 'FourFourTwo', 'KCCI Des Moines', 'Scranton Times-Tribune', 'Mirror.co.uk', 'Devils Lake Journal', 'Street Updates', 'Lifehacker', 'Press TV', 'WEAU', 'RadioFreeEurope/RadioLiberty', 'The News Journal', 'Google (press release)', 'Saudi Gazette via Yahoo Maktoob News', 'BurlingtonFreePress.com', 'Albuquerque Business First (blog)', 'Rochester Democrat and Chronicle (blog)', 'New Kerala', 'Lockport Union-Sun & Journal', '630ched.com', 'Phys.Org', 'KOMO News', 'The American Conservative', 'MTV.com', 'Fox 2 Detroit', 'iTWire', 'Middle East Confidential', 'Macworld (blog)', 'National Post', 'WMUR Manchester', 'Sojourners', 'Yahoo Tech', 'KRCRTV.COM', 'Maine Public Broadcasting', 'Algemeiner', 'Business Insider UK Finance via Yahoo UK & Ireland Finance', 'Tech Insider', 'Virtualization Review (blog)', 'Hellenic Shipping News Worldwide', 'WNYC', 'Prensa Latina', 'nwitimes.com', 'Houston Public Media', 'Eater', 'The Indian Express via Yahoo! India News', 'Baltimore Sun', 'CSO Online', 'IT World', 'Sahara Reporters', 'Boston.com', 'The New Indian Express', 'AFP via Yahoo UK & Ireland News', 'Associated Press via Yahoo! India News', 'FOX31 Denver', 'Haaretz Daily', 'Inc.com', 'Digital Journal', 'Natural Resources Defense Council (blog)', 'Minnesota Public Radio', 'ComputerWeekly.com (blog)', 'Big Think (blog)', 'Reseller News', 'The Manila Times', 'EconoTimes', 'The Advocate', 'WXYZ-TV Detroit', 'Globes', 'The Prince Albert Daily Herald', 'Minneapolis Star Tribune', 'UD Daily', 'BizPac Review', 'PRWeb', 'Stabroek News', 'WMBF News Myrtle Beach', 'Jackson Free Press', 'fox8.com', 'Orlando Sentinel', 'Reuters via Yahoo! Sports', 'Bloomberg View', 'InStyle', 'Gizmag', 'PerezHilton.com', 'RenewEconomy', 'Shillong Times', 'whotv.com', 'Bleacher Report', 'EconomyWatch.com', 'FreshPlaza', 'The Standard Digital News (satire) (press release) (registration) (blog)', '9 News Denver', 'cleveland.com', 'San Francisco Examiner', 'Hot Hardware', 'ESPN FC (blog)', 'NBC New York', 'Mobile Burn', 'The Moose Jaw Times Herald', 'Gawker', 'WLOX-TV Biloxi', 'GamingBolt', 'Environmental Data Interactive Exchange', 'Romper', 'ChemicalOnline', 'The Atlantic via Yahoo Canada News', 'Phone Scoop', 'Japan Today', 'ABC 7 Gulfshore News', 'Fresno Bee', 'Southeast Missourian', 'Africanews', 'The Sheboygan Press', 'Macleans.ca', 'Asahi Shimbun', 'Los Angeles Daily News', 'The Youngstown Vindicator', 'News One', 'Marketwired via Yahoo UK & Ireland Finance', 'Marketing Interactive', 'The Herald-Times (subscription)', '24/7 Wall St.', 'EuroNews', 'Multi-Housing News', 'SportsGrid', 'Xconomy', 'Access Hollywood', 'Sky News via Yahoo UK & Ireland Finance', 'Healthcare IT News', 'Business In Savannah', 'AFP News via Yahoo! Philippines News', 'KTUU.com', 'Bitbag', 'Fox News Insider', 'NewsFactor Network', 'Christian News Network', 'Midlothian Exchange', 'Ottawa Sun', 'SuperSite for Windows', 'Calgary Sun', 'The Star', 'iTech Post', 'abc7news.com', 'RTE News', 'Dark Reading', 'Public Knowledge Tech News and Comment (blog)', 'Benzinga', 'PR Newswire', 'Acton Institute (blog)', 'Detroit Free Press', 'Jalopnik', 'Wall Street Pit', 'Trend News Agency', 'Virginian-Pilot', 'Morning News USA', 'theTrumpet.com', 'MetalMiner', 'Go Certify', 'The Australian (subscription)', 'Brazil-Arab News Agency (ANBA)', 'Accounting Today', 'FOX30 / CBS47 Jacksonville', 'Nine O'Clock', 'Automotive News', 'Ceylon Daily News', 'Web Host Industry Review', 'ABC12 Mid-Michigan', 'Foreign Policy', 'Beckley Register-Herald', 'Bangor Daily News', 'Associated Press via Yahoo! Philippines Sports', 'Entrpreneur', 'WSET', 'Gulf Times', 'Channelnomics EU (registration)', 'The Market Oracle', "Crain's Detroit Business", 'EurActiv', 'Newsy', 'Geek', 'Weekly Times Now', 'SeeNews (subscription)', 'Social Europe', 'ITWeb', '12news.com', 'CCTV', 'The Muslim News', 'Sioux Falls Argus Leader', 'The Slovak Spectator', 'Knowledge@Wharton', 'KSL.com', 'Fusion', 'The Missoulian', 'Kansas City Star', 'INFORUM', 'Art Newspaper', 'Esquire.com', 'Channel 8 San Diego', 'Lifesite', 'Geektime', 'Gulf News', 'Bloomberg via Yahoo UK & Ireland Finance', 'WPTZ', 'The Sun', 'WAVY-TV', 'Cherry Hill Courier Post', 'The Associated Press via Yahoo! Sports', 'San Antonio Express-News (subscription)', 'Vogue.com', 'FOX Business', 'Reuters via Yahoo! Singapore News', 'Albany Times Union', 'Arab News via Yahoo Maktoob News', 'The Bournemouth Daily Echo', 'WCPO', 'The Columbian', 'The Providence Journal', 'Chinapost', 'Rand Daily Mail', 'ITV.com', '3DPrint.com', 'InfoQ.com', 'Cycling Weekly', 'Las Vegas Sun', 'The McDowell News', 'APEX Media', 'Wareable', 'Business Standard India', 'ThinkProgress', 'Greek Reporter', 'Alternative Information Center (AIC)', 'Threatpost', 'BGR India', 'snopes.com', 'Business Insider via Yahoo Canada Finance', 'New University', 'Arizona Daily Star', 'Foreign Affairs', 'Daily Sun', 'Science Magazine', 'SFGate', 'KABC-TV', 'FOX 8 New Orleans', 'iamWire', 'just-style.com (subscription)', 'Association France Palestine Solidarit\x9d\x9d', 'Coventry City FC', 'Herald Sun', 'WZZM 13 Grand Rapids', 'The Star-Ledger', 'Fayetteville Observer', 'TODAYonline', 'The FADER', 'CanadianBusiness.com', 'Crux: Covering all things Catholic', 'Honolulu Star-Advertiser', 'Pakistan Today', 'CBS Dallas - Fort Worth', 'Greater Baton Rouge Business Report', 'Sky News via Yahoo Canada News', 'Stars and Stripes', 'Canada Free Press', 'Siouxland Matters', 'Foreign Policy (blog)', 'Mississippi News Now', 'CampaignLive', 'A.V. Club (blog)', 'Military.com', 'WTOK', 'CNW Group via Yahoo! Finance', 'ITBusiness.ca', 'PJ Media (blog)', 'SkySports', 'OilPrice.com', 'Daily Mirror', 'American Spectator (blog)', 'E&T magazine', 'KOAT Albuquerque', 'Business Today', 'The Sunday Times', 'Henderson Daily News', 'MetroNews Canada', 'KABC-TV Los Angeles', 'Coventry Telegraph', 'Brandon Sun', 'Ventures Africa', 'Reuters India', 'TheStranger.com', 'Morning Star', 'Kitsap Sun', 'IRA Market Report', 'The Moscow Times (registration)', 'FOX 12 Oregon', 'Daily Star', 'Michigan Radio', 'CTV.ca', 'The Bakersfield Californian', 'newsBTC', 'Reuters via Yahoo!7 News', 'AFP News via Yahoo! Singapore News', 'Socialist Alternative', 'KFDA-TV Amarillo', 'PC Advisor', 'Wamda', 'MarketWatch via Yahoo! News', 'Business Standard (press release) (registration) (blog)', 'WSBT-TV', 'gearburn', 'The Durango Herald', 'The Jewish Journal of Greater Los Angeles', 'Al-Arabiya (blog)', 'The Motley Fool', 'Masterstudies News (blog)', 'KSWO', 'Reuters Blogs (blog)', 'EUobserver', 'iDigitalTimes.com', 'The London News Review', 'The Wire', 'Reuters - UK Focus via Yahoo UK & Ireland Finance', 'Financial Times via Yahoo! New Zealand Finance', 'FederalNewsRadio.com', 'The Indianapolis Star', 'CMSWire', 'Lisbon Morning Journal', 'Alaska Public Radio Network', 'Deseret News', 'Glenwood Springs Post Independent', 'LEDinside', 'WUIS 91.9', 'Builder Magazine', 'MediaPost', 'AfricaNews', 'This is Money', 'Robdailynews', 'Plastics and Rubber Weekly', 'News 24 South Africa', 'Wall Street Journal Blogs', 'Entrepreneur', 'PhoneWorld Magazine (press release) (blog)', 'Orlando Business Journal', 'Windows Report', 'Daiji World', 'AFP Relax via Yahoo! Singapore News', 'Dawn', 'Holyrood.com', 'FIFA', 'GameSpot', 'Malta Independent Online', 'Queerty', 'RTE.ie', 'Albany Business Review', 'Cinema Blend', 'Pulse.com.gh', 'The Local.de', 'Press Herald', 'Africanews (press release)', 'Global Trade Review (GTR)', 'FiveThirtyEight', 'Sky News via Yahoo UK & Ireland News', 'Co.Exist', 'Newser', 'Bay Area Indymedia', 'KGO-TV', 'InDaily', 'News.com.au Travel', 'The Grio', 'Taipei Times', 'Investment Week', 'Alphr', 'Lynn News', 'CTV Ottawa News', 'Greenfield Daily Reporter', 'TheChronicleHerald.ca', 'KTAL Shreveport', 'expressandstar.com', 'Geek.com', 'The Charlotte Post', 'Tyler Morning Telegraph', 'Metro Halifax', 'Secrecy News (blog)', 'Eu Business', 'Buenos Aires Herald', 'ExtremeTech', 'Business Insider UK', 'The Times of India', 'WHDH-TV', 'EU News', 'KLAS-TV', 'Men's Journal Tech via Yahoo! News', 'The Salt Lake Tribune', 'Jordan Times', 'New Haven Register', 'KIII TV3', 'Voltaire Network', 'YourStory.com', 'Associated Press of Pakistan', 'The American Bazaar', 'The Huffington Post UK', 'Lawrence Berkeley National Laboratory', 'JNS.org', 'WVVA Bluefield', 'Yahoo Singapore News', 'DailyO', 'Budapest Business Journal', 'Techradar India', 'Citizen TV (press release)', 'The Chronicle Herald', 'SDTimes.com', 'CRN', 'Jewschool', 'Expert Reviews', 'Financial Express Bangladesh', 'Boxscore', 'Redding Record Searchlight', 'The Tico Times', 'CBS Pittsburgh', 'AdAge.com (blog)', 'Swampland', 'The Drum', 'International Herald Tribune', 'LeFaso.net', 'AFL-CIO (blog)', 'Us Weekly', 'Bend Bulletin', 'TechnoBuffalo', 'KALW', 'ZDNet UK', 'Gamasutra', "Barron's", 'Albuquerque Journal', 'FOX 5 San Diego', 'Capital FM Kenya (press release) (blog)', 'The Verge via Yahoo Canada News', 'Bharat Press', 'Komando', 'Aberdeen Press and Journal', 'Jerusalem Post Israel News (blog)', 'NorthernLife.ca', 'Manufacturing.net']
Unique values in 'Topic': ['obama', 'economy', 'microsoft', 'palestine']
Unique values in 'Facebook': [100, 4, 87, -1, 181, 67, 241, 2, 1, 104, 42, 138, 9, 0, 5902, 68, 31, 17, 10, 13, 8, 165, 130, 77, 18, 253, 143, 20, 39, 132, 325, 5856, 5, 56, 3, 131, 94, 123, 7, 311, 15, 269, 19, 548, 45, 34, 26, 88, 151, 574, 172, 226, 55, 51, 70, 11, 1697, 128, 72, 434, 499, 412, 464, 27, 66, 30, 1689, 16, 1695, 159, 194, 12, 15692, 37, 47, 208, 53, 41, 173, 28, 127, 442, 64, 29, 58, 489, 35, 126, 258, 1398, 6, 69, 188, 389, 1195, 101, 43, 22, 59, 2703, 24, 62, 317, 427, 176, 25, 460, 71, 192, 436, 234, 14, 837, 75, 410, 85, 901, 1361, 310, 702, 689, 50, 98, 1202, 476, 1473, 1777, 479, 21, 419, 99, 193, 1479, 1693, 266, 620, 48, 119, 202, 337, 1252, 38, 61, 106, 95, 261, 32, 827, 231, 93, 468, 251, 263, 591, 78, 546, 2376, 452, 597, 97, 224, 189, 163, 220, 44, 133, 23, 210, 455, 149, 465, 336, 844, 406, 49, 4153, 73, 318, 623, 135, 186, 883, 295, 1237, 79, 137, 422, 182, 354, 614, 199, 161, 283, 621, 40, 36, 501, 84, 453, 3437, 572, 593, 157, 358, 90, 6124, 699, 381, 332, 147, 274, 115, 108, 1363, 871, 652, 853, 480, 153, 746, 92, 610, 605, 294, 238, 1151, 76, 116, 113, 664, 2486, 255, 329, 155, 102, 239, 129, 110, 2244, 447, 282, 290, 382, 175, 2430, 407, 103, 184, 54, 10957, 2377, 114, 81, 237, 423, 309, 762, 276, 709, 637, 1149, 786, 80, 1678, 148, 240, 511, 2934, 1119, 46, 521, 303, 118, 63, 1899, 83, 213, 1022, 198, 561, 930, 152, 105, 145, 174, 935, 584, 8237, 1718, 450, 171, 89, 907, 233, 556, 485, 316, 1976, 813, 925, 257, 158, 379, 8270, 5623, 829, 527, 250, 1752, 109, 1721, 697, 82, 757, 943, 190, 74, 162, 60, 569, 297, 326, 214, 292, 1262, 164, 122, 179, 492, 156, 508, 741, 201, 33, 232, 399, 987, 1244, 777, 236, 484, 160, 140, 259, 322, 52, 1450, 361, 65, 306, 669, 979, 249, 1047, 944, 1243, 1114, 1424, 568, 851, 493, 2790, 267, 1508, 197, 167, 801, 470, 698, 395, 367, 612, 1121, 111, 2573, 782, 1148, 1052, 327, 1010, 355, 560, 211, 57, 185, 634, 166, 421, 1706, 566, 622, 142, 3675, 1145, 1641, 121, 1342, 433, 1170, 136, 838, 2636, 1524, 1757, 754, 951, 343, 2361, 756, 256, 146, 534, 117, 745, 345, 270, 4989, 333, 120, 2379, 1223, 496, 204, 248, 235, 440, 96, 154, 1512, 532, 743, 1264, 629, 1359, 298, 280, 170, 1185, 551, 219, 1662, 396, 275, 1182, 3370, 575, 331, 112, 205, 1462, 284, 191, 391, 681, 348, 562, 755, 873, 169, 222, 1325, 1042, 444, 528, 2996, 507, 139, 902, 1510, 373, 474, 592, 3717, 217, 3642, 1471, 3041, 363, 523, 124, 1200, 2852, 386, 227, 125, 790, 312, 2435, 86, 5872, 5053, 443, 1518, 2403, 320, 2121, 435, 667, 707, 2646, 1316, 3384, 392, 679, 720, 16598, 4236, 364, 1910, 539, 3276, 2020, 107, 594, 1373, 437, 876, 1240, 7427, 262, 471, 991, 206, 884, 1912, 347, 209, 200, 5568, 1112, 1452, 409, 519, 417, 400, 91, 168, 753, 403, 581, 648, 243, 287, 374, 195, 4220, 771, 13160, 714, 414, 1451, 461, 660, 3121, 265, 1217, 304, 473, 2921, 978, 676, 847, 1539, 1415, 216, 509, 362, 1391, 272, 632, 277, 3526]
Unique values in 'GooglePlus': [1, 0, 16, 3, 5, -1, 28, 2, 9, 15, 17, 12, 4, 67, 24, 63, 10, 23, 96, 8, 11, 18, 14, 34, 91, 49, 7, 25, 29, 77, 6, 21, 56, 27, 32, 31, 241, 30, 138, 36, 46, 70, 58, 59, 212, 52, 38, 41, 51, 276, 33, 102, 71, 104, 20, 19, 89, 26, 13, 22, 174, 35, 48, 44, 115, 62, 129, 92, 148, 243, 79, 47, 50, 145, 39, 69, 65, 114, 43, 61, 37, 40, 53, 109, 78, 42, 74, 417, 86, 68, 110, 90, 146, 206, 54, 219, 544, 181, 57, 131, 93, 99]
Unique values in 'LinkedIn': [0, 2, 1, 3, 9, 45, 14, -1, 404, 5, 4, 520, 26, 18, 38, 80, 43, 30, 42, 8, 22, 19, 7, 35, 12, 15, 11, 36, 17, 310, 6, 54, 32, 10, 920, 27, 489, 68, 28, 13, 131, 326, 151, 69, 57, 975, 195, 21, 23, 78, 225, 222, 56, 76, 25, 630, 59, 898, 60, 47, 46, 121, 130, 62, 142, 102, 88, 129, 74, 64, 108, 44, 90, 37, 20, 4328, 159, 24, 297, 306, 52, 233, 99, 559, 354, 175, 50, 16, 96, 51, 85, 33, 41, 53, 100, 434, 29, 40, 39, 262, 372, 1151, 493, 406, 61, 94, 529, 178, 172, 103, 55, 470, 478, 268, 203, 215, 227, 118, 169, 34, 785, 140, 97, 147, 266, 93, 160, 72, 83, 165, 422, 346, 164, 467, 101, 1716, 155, 235, 765, 89, 133, 65, 329, 31, 177, 48, 376, 170, 143, 645, 127, 618, 387, 455, 95, 168, 136, 70, 87, 277, 75, 670, 135, 79, 475, 73, 82, 1230, 63, 213, 112, 350, 1642, 91, 1359, 161, 81, 114, 291, 274, 67, 66, 465, 858, 107, 272, 316, 8115, 86, 58, 186, 229, 71, 201, 163, 149, 84, 1423, 624, 120, 1051, 116, 183, 1118, 199, 158, 19737, 228, 49, 729, 445, 370, 339, 257, 124, 271, 194, 273, 134, 98, 357, 92, 105, 672, 668]
print(hits_data.dtypes)
print("------------------")
print(type(hits_data['Topic']))
populer_trend=hits_data.groupby('Topic').size().unique
print("------------------")
print(populer_trend)
list_topic=hits_data['Topic'].values.tolist()
print("------------------")
print(list_topic)
IDLink float64 Title object Headline object Source object Topic object PublishDate object SentimentTitle float64 SentimentHeadline float64 Facebook int64 GooglePlus int64 LinkedIn int64 dtype: object ------------------ <class 'pandas.core.series.Series'> ------------------ <bound method Series.unique of Topic economy 3377 microsoft 2185 obama 2886 palestine 876 dtype: int64> ------------------ ['obama', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'palestine', 'obama', 'economy', 'palestine', 'palestine', 'economy', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'microsoft', 'economy', 'palestine', 'microsoft', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'palestine', 'palestine', 'economy', 'economy', 'obama', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'palestine', 'microsoft', 'economy', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'palestine', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'palestine', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'obama', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'palestine', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'economy', 'palestine', 'obama', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'palestine', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'palestine', 'economy', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'palestine', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'microsoft', 'palestine', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'palestine', 'palestine', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'palestine', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'palestine', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'palestine', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'obama', 'obama', 'palestine', 'economy', 'obama', 'obama', 'obama', 'palestine', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'palestine', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'palestine', 'obama', 'palestine', 'obama', 'microsoft', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'palestine', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'palestine', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'obama', 'microsoft', 'microsoft', 'palestine', 'palestine', 'microsoft', 'microsoft', 'economy', 'obama', 'palestine', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'obama', 'obama', 'economy', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'palestine', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'palestine', 'palestine', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'palestine', 'microsoft', 'microsoft', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'economy', 'obama', 'palestine', 'obama', 'microsoft', 'palestine', 'obama', 'microsoft', 'economy', 'microsoft', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'palestine', 'palestine', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'palestine', 'palestine', 'palestine', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'palestine', 'obama', 'microsoft', 'palestine', 'economy', 'palestine', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'microsoft', 'microsoft', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'palestine', 'palestine', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'economy', 'palestine', 'obama', 'obama', 'obama', 'economy', 'palestine', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'palestine', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'palestine', 'palestine', 'obama', 'palestine', 'microsoft', 'obama', 'obama', 'microsoft', 'palestine', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'microsoft', 'palestine', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'palestine', 'obama', 'economy', 'palestine', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'palestine', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'palestine', 'economy', 'obama', 'obama', 'economy', 'palestine', 'microsoft', 'microsoft', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'palestine', 'palestine', 'economy', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'palestine', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'palestine', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'obama', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'palestine', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'palestine', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'palestine', 'palestine', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'palestine', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'palestine', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'palestine', 'obama', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'microsoft', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'palestine', 'microsoft', 'palestine', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'obama', 'obama', 'palestine', 'microsoft', 'palestine', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'palestine', 'obama', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'palestine', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'palestine', 'palestine', 'palestine', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'obama', 'obama', 'economy', 'palestine', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'palestine', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'microsoft', 'palestine', 'microsoft', 'obama', 'palestine', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'obama', 'microsoft', 'microsoft', 'palestine', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'palestine', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'palestine', 'palestine', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'palestine', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'palestine', 'economy', 'economy', 'palestine', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'palestine', 'obama', 'obama', 'palestine', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'palestine', 'palestine', 'obama', 'microsoft', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'palestine', 'obama', 'microsoft', 'palestine', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'obama', 'obama', 'obama', 'economy', 'economy', 'palestine', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'obama', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'palestine', 'obama', 'palestine', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'palestine', 'economy', 'obama', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'obama', 'palestine', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'palestine', 'palestine', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'palestine', 'obama', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'palestine', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'palestine', 'palestine', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'palestine', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'palestine', 'obama', 'obama', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'palestine', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'palestine', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'obama', 'palestine', 'obama', 'obama', 'economy', 'palestine', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'palestine', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'palestine', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'palestine', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'palestine', 'economy', 'obama', 'economy', 'economy', 'economy', 'palestine', 'economy', 'microsoft', 'economy', 'microsoft', 'palestine', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'palestine', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'palestine', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'economy', 'obama', 'obama', 'economy', 'palestine', 'obama', 'economy', 'economy', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'obama', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'palestine', 'economy', 'obama', 'microsoft', 'obama', 'palestine', 'obama', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'palestine', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'obama', 'obama', 'economy', 'palestine', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'palestine', 'obama', 'palestine', 'obama', 'microsoft', 'obama', 'obama', 'palestine', 'palestine', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'palestine', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'palestine', 'obama', 'obama', 'palestine', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'palestine', 'palestine', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'palestine', 'palestine', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'palestine', 'palestine', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'obama', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'palestine', 'economy', 'microsoft', 'obama', 'palestine', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'palestine', 'palestine', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'palestine', 'palestine', 'obama', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'palestine', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'palestine', 'palestine', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'palestine', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'palestine', 'obama', 'microsoft', 'economy', 'economy', 'palestine', 'palestine', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'palestine', 'palestine', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'palestine', 'economy', 'obama', 'obama', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'palestine', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'palestine', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'obama', 'economy', 'economy', 'palestine', 'obama', 'obama', 'microsoft', 'palestine', 'palestine', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'palestine', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'economy', 'economy', 'economy', 'economy', 'palestine', 'palestine', 'palestine', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'palestine', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'palestine', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'palestine', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'palestine', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'palestine', 'economy', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'economy', 'palestine', 'economy', 'palestine', 'microsoft', 'obama', 'palestine', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'palestine', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'palestine', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'palestine', 'microsoft', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'obama', 'palestine', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'palestine', 'economy', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'palestine', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'palestine', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'obama', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'palestine', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'palestine', 'obama', 'economy', 'obama', 'palestine', 'obama', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'palestine', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'palestine', 'obama', 'palestine', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'economy', 'economy', 'palestine', 'economy', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'obama', 'palestine', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'obama', 'palestine', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'palestine', 'obama', 'obama', 'economy', 'obama', 'obama', 'palestine', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'palestine', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'palestine', 'obama', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'palestine', 'obama', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'palestine', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'microsoft', 'economy', 'palestine', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'palestine', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'economy', 'microsoft', 'microsoft', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'palestine', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'palestine', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'palestine', 'palestine', 'microsoft', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'palestine', 'economy', 'obama', 'obama', 'palestine', 'economy', 'obama', 'palestine', 'economy', 'palestine', 'economy', 'obama', 'palestine', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'obama', 'palestine', 'microsoft', 'microsoft', 'economy', 'palestine', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'palestine', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'palestine', 'obama', 'obama', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'palestine', 'economy', 'palestine', 'economy', 'palestine', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'obama', 'palestine', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'palestine', 'palestine', 'economy', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'palestine', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'palestine', 'economy', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'palestine', 'obama', 'economy', 'obama', 'economy', 'palestine', 'palestine', 'obama', 'economy', 'obama', 'economy', 'economy', 'palestine', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'palestine', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'palestine', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'palestine', 'palestine', 'palestine', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'palestine', 'palestine', 'palestine', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'microsoft', 'palestine', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'palestine', 'microsoft', 'economy', 'economy', 'palestine', 'palestine', 'obama', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'microsoft', 'palestine', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'palestine', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'palestine', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'obama', 'palestine', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'palestine', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'palestine', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'palestine', 'obama', 'palestine', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'palestine', 'obama', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'palestine', 'economy', 'palestine', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'palestine', 'palestine', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'palestine', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'palestine', 'obama', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'palestine', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'palestine', 'palestine', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'palestine', 'microsoft', 'obama', 'obama', 'microsoft', 'palestine', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'economy', 'palestine', 'economy', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'palestine', 'economy', 'palestine', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'palestine', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'palestine', 'microsoft', 'economy', 'obama', 'palestine', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'palestine', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'palestine', 'obama', 'economy', 'economy', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'palestine', 'palestine', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'palestine', 'obama', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'palestine', 'microsoft', 'economy', 'palestine', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'palestine', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'palestine', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'obama', 'microsoft', 'palestine', 'palestine', 'economy', 'economy', 'palestine', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'palestine', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'obama', 'microsoft', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'palestine', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'palestine', 'obama', 'palestine', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'obama', 'palestine', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'palestine', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'microsoft', 'economy', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'palestine', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'palestine', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'economy', 'obama', 'obama', 'palestine', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'palestine', 'obama', 'palestine', 'obama', 'microsoft', 'economy', 'palestine', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'palestine', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'palestine', 'palestine', 'obama', 'economy', 'economy', 'palestine', 'obama', 'palestine', 'economy', 'microsoft', 'palestine', 'economy', 'obama', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'palestine', 'palestine', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'palestine', 'economy', 'palestine', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'palestine', 'obama', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'economy', 'economy', 'economy', 'palestine', 'microsoft', 'microsoft', 'economy', 'obama', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'obama', 'economy', 'obama', 'palestine', 'obama', 'obama', 'economy', 'palestine', 'palestine', 'obama', 'economy', 'palestine', 'economy', 'economy', 'palestine', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'palestine', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'palestine', 'economy', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'palestine', 'microsoft', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'palestine', 'obama', 'economy', 'palestine', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'microsoft', 'palestine', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'palestine', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'palestine', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'palestine', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'palestine', 'palestine', 'economy', 'palestine', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'palestine', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'palestine', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'palestine', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'palestine', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'obama', 'microsoft', 'palestine', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'palestine', 'palestine', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'obama', 'palestine', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'palestine', 'microsoft', 'microsoft', 'palestine', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'obama', 'palestine', 'palestine', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'palestine', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'palestine', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'palestine', 'obama', 'palestine', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'palestine', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'palestine', 'microsoft', 'economy', 'microsoft', 'palestine', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'palestine', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'palestine', 'palestine', 'obama', 'economy', 'microsoft', 'microsoft', 'palestine', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'palestine', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'palestine', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'palestine', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'palestine', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'palestine', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'palestine', 'palestine', 'economy', 'obama', 'economy', 'economy', 'palestine', 'microsoft', 'palestine', 'palestine', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'palestine', 'obama', 'obama', 'palestine', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'palestine', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'palestine', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'palestine', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'palestine', 'palestine', 'obama', 'palestine', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'palestine', 'economy', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'palestine', 'economy', 'microsoft', 'palestine', 'obama', 'palestine', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'palestine', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'palestine', 'obama', 'palestine', 'palestine', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'palestine', 'palestine', 'economy', 'obama', 'palestine', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'palestine', 'economy', 'economy', 'obama', 'palestine', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'palestine', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'palestine', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'palestine', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'palestine', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'palestine', 'palestine', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'palestine', 'obama', 'palestine', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'palestine', 'economy', 'obama', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'palestine', 'microsoft', 'palestine', 'economy', 'palestine', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'palestine', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'palestine', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'palestine', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'obama', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'economy', 'palestine', 'microsoft', 'palestine', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'palestine', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'palestine', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'palestine', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'palestine', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'palestine', 'economy', 'obama', 'palestine', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'palestine', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'palestine', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'palestine', 'palestine', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'palestine', 'microsoft', 'obama', 'economy', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'obama', 'palestine', 'palestine', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'palestine', 'obama', 'economy', 'obama', 'palestine', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'palestine', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'palestine', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'palestine', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'palestine', 'obama', 'obama', 'economy', 'palestine', 'palestine', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'microsoft', 'palestine', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'economy', 'economy', 'palestine', 'obama', 'economy', 'obama', 'obama', 'obama', 'obama', 'economy', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'economy', 'palestine', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'palestine', 'obama', 'economy', 'obama', 'microsoft', 'palestine', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'palestine', 'economy', 'obama', 'obama', 'palestine', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'palestine', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'microsoft', 'obama', 'microsoft', 'economy', 'palestine', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'palestine', 'obama', 'palestine', 'economy', 'obama', 'obama', 'economy', 'economy', 'palestine', 'obama', 'obama', 'obama', 'microsoft', 'palestine', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'palestine', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'palestine', 'microsoft', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'palestine', 'microsoft', 'economy', 'obama', 'palestine', 'economy', 'obama', 'palestine', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'palestine', 'economy', 'obama', 'obama', 'obama', 'economy', 'palestine', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'economy', 'palestine', 'palestine', 'obama', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'palestine', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'palestine', 'obama', 'economy', 'economy', 'palestine', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'palestine', 'microsoft', 'palestine', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'palestine', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'palestine', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'palestine', 'palestine', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'palestine', 'palestine', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'economy', 'palestine', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'economy', 'palestine', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'palestine', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'palestine', 'obama', 'microsoft', 'economy', 'palestine', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'palestine', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'palestine', 'palestine', 'microsoft', 'palestine', 'palestine', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'economy', 'economy', 'palestine', 'microsoft', 'obama', 'palestine', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'palestine', 'palestine', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'palestine', 'palestine', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'microsoft', 'obama', 'obama', 'microsoft', 'palestine', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'palestine', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'palestine', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'palestine', 'obama', 'obama', 'palestine', 'palestine', 'obama', 'microsoft', 'microsoft', 'palestine', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'palestine', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'palestine', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'palestine', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'palestine', 'palestine', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'palestine', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'palestine', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'palestine', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'palestine', 'palestine', 'obama', 'palestine', 'obama', 'microsoft', 'palestine', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'palestine', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'palestine', 'obama', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'economy', 'palestine', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'palestine', 'obama', 'microsoft', 'palestine', 'economy', 'obama', 'economy', 'obama', 'palestine', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'economy', 'palestine', 'microsoft', 'economy', 'palestine', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'palestine', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'obama', 'palestine', 'obama', 'economy', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'palestine', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'economy', 'economy', 'economy', 'palestine', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'palestine', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'palestine', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'palestine', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'palestine', 'economy', 'economy', 'economy', 'palestine', 'palestine', 'economy', 'palestine', 'microsoft', 'palestine', 'economy', 'palestine', 'obama', 'microsoft', 'palestine', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'palestine', 'economy', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'microsoft', 'palestine', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'obama', 'palestine', 'economy', 'economy', 'obama', 'economy', 'palestine', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'palestine', 'obama', 'obama', 'obama', 'obama', 'microsoft', 'palestine', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'palestine', 'obama', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'palestine', 'palestine', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'palestine', 'obama', 'obama', 'palestine', 'obama', 'microsoft', 'microsoft', 'economy', 'economy', 'palestine', 'palestine', 'palestine', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'microsoft', 'obama', 'obama', 'palestine', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'palestine', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'palestine', 'palestine', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'palestine', 'obama', 'palestine', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'palestine', 'obama', 'palestine', 'palestine', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'palestine', 'obama', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'palestine', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'palestine', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'palestine', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'obama', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'economy', 'economy', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'obama', 'palestine', 'economy', 'economy', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'palestine', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'palestine', 'economy', 'obama', 'palestine', 'microsoft', 'obama', 'palestine', 'palestine', 'obama', 'obama', 'obama', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'palestine', 'economy', 'obama', 'economy', 'palestine', 'obama', 'obama', 'obama', 'economy', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'palestine', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'palestine', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'microsoft', 'economy', 'obama', 'palestine', 'palestine', 'microsoft', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'palestine', 'palestine', 'obama', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'obama', 'economy', 'palestine', 'microsoft', 'economy', 'palestine', 'economy', 'economy', 'obama', 'palestine', 'microsoft', 'palestine', 'obama', 'palestine', 'palestine', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'palestine', 'microsoft', 'economy', 'obama', 'microsoft', 'palestine', 'economy', 'microsoft', 'economy', 'economy', 'microsoft', 'obama', 'palestine', 'economy', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'palestine', 'obama', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'palestine', 'economy', 'economy', 'palestine', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'obama', 'obama', 'economy', 'palestine', 'economy', 'microsoft', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'palestine', 'microsoft', 'economy', 'palestine', 'microsoft', 'palestine', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'economy', 'economy', 'palestine', 'economy', 'economy', 'palestine', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'microsoft', 'microsoft', 'palestine', 'obama', 'obama', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'palestine', 'palestine', 'microsoft', 'economy', 'palestine', 'economy', 'microsoft', 'microsoft', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'palestine', 'palestine', 'economy', 'obama', 'obama', 'obama', 'palestine', 'palestine', 'microsoft', 'obama', 'obama', 'microsoft', 'microsoft', 'palestine', 'obama', 'economy', 'palestine', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'palestine', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'economy', 'microsoft', 'microsoft', 'microsoft', 'microsoft', 'obama', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'palestine', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'obama', 'microsoft', 'obama', 'palestine', 'economy', 'economy', 'obama', 'palestine', 'economy', 'palestine', 'economy', 'obama', 'obama', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'obama', 'economy', 'obama', 'palestine', 'obama', 'economy', 'obama', 'obama', 'economy', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'obama', 'palestine', 'obama', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'economy', 'palestine', 'economy', 'microsoft', 'palestine', 'obama', 'economy', 'obama', 'obama', 'palestine', 'obama', 'economy', 'obama', 'microsoft', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'obama', 'obama', 'economy', 'obama', 'obama', 'microsoft', 'microsoft', 'obama', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'palestine', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'economy', 'economy', 'palestine', 'economy', 'palestine', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'obama', 'obama', 'economy', 'economy', 'obama', 'economy', 'microsoft', 'obama', 'economy', 'palestine', 'obama', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'obama', 'economy', 'economy', 'palestine', 'obama', 'economy', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'economy', 'microsoft', 'palestine', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'microsoft', 'obama', 'economy', 'obama', 'obama', 'economy', 'economy', 'economy', 'economy', 'microsoft', 'microsoft', 'economy', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'obama', 'palestine', 'microsoft', 'obama', 'obama', 'microsoft', 'obama', 'obama', 'economy', 'economy', 'obama', 'microsoft', 'microsoft', 'palestine', 'economy', 'obama', 'economy', 'palestine', 'obama', 'palestine', 'microsoft', 'palestine', 'palestine', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'economy', 'obama', 'economy', 'economy', 'microsoft', 'microsoft', 'microsoft', 'economy', 'economy', 'palestine', 'economy', 'economy', 'obama', 'microsoft', 'economy', 'economy', 'economy', 'palestine', 'economy', 'economy', 'microsoft', 'obama', 'economy', 'microsoft', 'economy', 'microsoft', 'microsoft', 'obama', 'obama', 'microsoft', 'economy', 'obama', 'economy', 'economy', 'obama', 'economy', 'obama', 'microsoft', 'obama', 'microsoft', 'obama', 'economy', 'economy', 'economy', 'obama', 'microsoft', 'obama', 'economy', 'palestine', 'microsoft', 'obama', 'microsoft', 'microsoft', 'microsoft', 'palestine', 'palestine', 'obama', 'obama', 'obama', 'economy', 'microsoft', 'economy', 'palestine', 'microsoft', 'microsoft', 'obama', 'obama', 'economy']
print(hits_data.groupby('Source').size())
popular_headline=hits_data.groupby('Source').size()
print(popular_headline)
list_headline=hits_data['Source'].values.tolist()
print("------------------")
print(list_headline)
Source
19
+972 Magazine 11
10TV 1
11alive.com 1
12 News Phoenix 1
..
wlfi.com 1
wwlp.com 3
www.breakbulk.com 1
www.kingstonregion.com/ 1
www.worldbulletin.net 64
Length: 3576, dtype: int64
Source
19
+972 Magazine 11
10TV 1
11alive.com 1
12 News Phoenix 1
..
wlfi.com 1
wwlp.com 3
www.breakbulk.com 1
www.kingstonregion.com/ 1
www.worldbulletin.net 64
Length: 3576, dtype: int64
------------------
['Wall Street Journal (blog)', 'BDlive', 'POLITICO Magazine', 'Los Angeles Times', 'PoliticusUSA', 'Financial Post', 'Bloomberg', 'The Straits Times', 'WinBeta', 'Good Morning America via Yahoo! News', 'CNET', 'Chandigarh Tribune', 'Ahlul Bayt News Agency (press release)', 'Tribune-Review', 'GMA News', 'Jerusalem Post Israel News', 'Ahlul Bayt News Agency (press release)', 'Charisma News', 'Forbes', 'BusinessDay', 'The Star, Kenya', 'The Rock Hill Herald', 'International Business Times', 'BusinessDay', 'Western Journalism', 'Business Insider', 'The Hill', 'PC World', 'Channel News Asia', 'Telegraph.co.uk', 'Reuters via Yahoo! Finance', 'The Guardian', 'Wired UK', 'Entertainment Weekly', 'Reuters', 'StreetAuthority Network via Yahoo! Finance', 'Politico', 'New York Post', 'Casper Star-Tribune Online', 'MobiPicker', 'Digital Trends via Yahoo! Finance', 'rediff.com', 'The Star, Kenya', 'WND.com', 'EMQ', 'The Hindu', 'NBCNews.com', 'ABC News', 'Financial Times', 'Telegraph.co.uk', 'Economic Times', 'AFP via Yahoo! News', 'The Wall Street Journal', 'Huffington Post', 'AFP via Yahoo! News', 'ABC News', 'WinBeta', 'SC Magazine UK', 'Business Insider', 'Shanghai Daily (subscription)', 'Middle East Eye', 'TrustedReviews', 'Thurrott.com (blog)', 'Washington Post', 'Irish Examiner', 'Herald Scotland', 'Politico', 'TASS', 'The Hill (blog)', 'Independent Online', 'SiliconANGLE (blog)', 'CIO', 'Globalnews.ca', 'ForexLive', 'Manila Standard Today', 'Black Enterprise', 'Minneapolis-St. Paul Star Tribune', 'Arutz Sheva', 'AFP via Yahoo! News', 'NBC NEWS', 'NDTV', 'Center For American Progress', 'BBC News', 'Newsday', 'Haaretz', 'UPROXX', 'Business Insider', 'Bloomberg', 'The Mercury', 'BusinessDay', 'AFP via Yahoo!7 News', 'Fox News', 'CoinDesk', 'Daily Caller', 'Times of Malta', 'Bloomberg', 'Metro', 'Racked NY', '660 News', 'KBS WORLD Radio News', 'GhanaWeb', 'Business Wire via Yahoo! Finance', 'Forbes', 'Bloomberg', 'NPR', 'The Guardian', nan, 'Tallahassee.com', 'Washington Free Beacon', 'Daily Mail', 'Saskatoonhomepage.ca', 'BBC News', 'Stuff', 'SlashGear', 'WBAL Baltimore', 'GQ Magazine', 'Apple Insider', 'AFP via Yahoo! India News', 'Digital Trends via Yahoo! News', 'Las Vegas Review-Journal', 'Reuters', 'SiliconANGLE (blog)', 'Seeking Alpha', 'FOX 4 News', 'Digital Trends via Yahoo! Sports', 'fox2now.com', 'Mobile World Live', 'Palestine Herald Press', 'MSNBC', 'Borderstan', 'Associated Press via Yahoo! Finance', 'Sacramento Bee', 'The Inquisitr', 'Washington Post', 'BBC News', 'WTOC 11 Savannah', 'Polygon', 'The Seattle Times', 'WND.com', 'Asia Times', 'Town Hall', 'Livemint', 'Reuters UK', 'Business Insider', 'Boston Herald', 'WinBeta', 'ABC Online', 'New Statesman', 'PC World', 'Christian Post', 'Washington Free Beacon', 'Hot Air', 'Dickinson Press', 'Reuters', 'Inside Higher Ed (blog)', 'The Hill (blog)', 'The American Prospect', 'Bloomberg', 'WinBeta', 'The Daily Star', 'Channel News Asia', 'Financial Times', 'News.com.au', 'AFP via Yahoo! News', 'TheStreet.com', 'Nasdaq', 'Mother Jones', 'Council on Foreign Relations (blog)', 'Ahram Online', 'FrontPage Magazine', 'RealClearPolitics', 'International Business Times via Yahoo UK & Ireland News', 'THE BUSINESS TIMES', 'NPR', 'Latin Post', 'Wall Street Journal', 'Thurrott.com (blog)', 'Intifada Palestine', 'The Huffington Post', 'Yahoo! Maktoob News', 'City A.M.', 'The Zimbabwean', 'Marketwired via Yahoo! Finance', 'International Business Times', 'LifeNews.com', 'Washington Post', 'The Express Tribune', 'Cornell Chronicle', 'New York Times', 'TPM', 'China Economic Net', 'Middle East Monitor', 'RT', 'GeekWire', 'The Register', 'Variety', 'The Trace', 'U.S. News & World Report', 'New Vision', 'Windows Central', 'Truthdig', 'Market Realist via Yahoo! Finance', 'The Verge via Yahoo! News', 'Whitehouse.gov (press release)', 'Computer Business Review', 'The Rock Hill Herald', 'BBC News', 'Yahoo Finance', 'Marketwired via Yahoo! Finance', 'DailyPost Nigeria', 'Washington Times', 'Charlotte Observer', 'The Star Online', 'Swarajya', 'Denver Post', 'FOX13 Memphis', 'Haaretz', 'Outlook India', 'Chicago Tribune', 'Bloomberg via Yahoo! Finance', 'WinBeta', 'SalemNews.net', 'Digital Trends', 'San Antonio Express-News', 'Consumer Reports via Yahoo! Finance', 'Counsel & Heal', 'New Republic', 'ABS-CBNNEWS.com', 'Financial Times', 'BreakingNews.ie', 'CBC.ca', 'Nikkei Asian Review', 'The Guardian', 'Kuwait News Agency', 'CBS News', 'International Business Times via Yahoo UK & Ireland News', 'AOL News', 'Michigan State University Extension', 'The Washington Times', 'AllAfrica.com', 'World Bank Group', 'BusinessKorea', 'T.H.E. Journal', 'Utne Reader Online', 'The Age', 'Irish Independent', 'Daily Times', 'ABC 15 Phoenix', 'Daily Beast', 'TechCrunch', 'Economic Times', 'Daily Sabah', 'Market Watch', 'Forbes', 'Arab News', 'Bulletin of the Atomic Scientists', 'Manila Bulletin', 'Politico', 'The Times of Israel', 'WTOP', 'CNN Money', 'ZDNet', 'The Seattle Times', 'Yahoo News', 'Bustle', 'CNN', 'The Inquirer', 'The Japan Times', 'India Infoline', 'IANS via Yahoo Maktoob News', 'Investorplace.com', 'Sputnik International', 'AFP via Yahoo!7 Finance', 'dailytelegraph.com.au', 'Bloomberg', 'New York Times', 'The White House (blog)', 'Chicago Sun-Times', 'Xinhua', 'Wall Street Journal', 'Daily Caller', 'Christian Science Monitor', 'Daily Mail', 'The Guardian', 'Times of India', 'MSPoweruser.com', 'Bloomberg via Yahoo! Finance', 'BDlive', 'Power Line (blog)', 'USA TODAY', 'Sputnik UK', 'Fox Business', 'Forbes', 'Fortune', 'BBC News', 'Las Cruces Sun-News', 'Opposing Views', 'The Herald', 'Shanghai Daily (subscription)', 'Huffington Post UK', 'TechRadar', 'Wisconsin Public Radio News', 'Daily Caller', 'InfoToday.com', 'Sify News', 'Manila Bulletin', 'FXStreet', 'Reuters UK', 'iT News', 'Business Insider via Yahoo! Finance', 'Bloomberg via Yahoo! Finance', 'AFP via Yahoo! Finance', 'Bloomberg', 'The Hill', 'Palestine Herald Press', 'Associated Press via Yahoo Maktoob News', 'Reuters via Yahoo! Philippines News', 'Pocket-lint.com', 'Western Journalism', 'Sputnik International', 'Lowell Sun', 'Huffington Post', 'Business Insider', 'CNET', 'The Verge', 'Intifada Palestine', 'Himalayan Times', 'The Peak', 'Reuters via Yahoo! Finance', 'Marketwired via Yahoo! Finance', 'USA TODAY', 'New York Post', 'Vanguard', 'OS News', 'International Business Times', 'Business Insider', 'New Zealand Herald', 'Mondoweiss', 'Arutz Sheva', 'CNBC via Yahoo! Finance', 'The Wall Street Journal', 'WRAL.com', 'KOCO Oklahoma City', 'Sydney Morning Herald', 'Business in Vancouver', 'PoliticsHome.com', 'Al-Arabiya', 'Neowin', 'Newsmax', 'Investopedia', 'IBN live', 'The Christian Post', 'The Japan Times', 'The Boston Globe', 'The Verge via Yahoo! News', 'Al-Arabiya', 'TechRepublic', 'Town Hall', 'Sabah Daily Express', 'Express.co.uk', 'CNN', 'Bristol Herald Courier (press release) (blog)', 'Eyewitness News', 'American Thinker (blog)', 'WND.com', 'Zee News', 'Business Insider', 'The Sydney Morning Herald', 'Wall Street Journal', 'New York Daily News', 'Arutz Sheva', 'Daily Beast', 'WPTZ The Champlain Valley', 'EE Times', 'CBC.ca', 'Slate Magazine', 'Tehran Times', 'The Next Web', 'Softpedia News', 'Wall Street Journal (blog)', 'The Holmes Report', 'WIRED', 'CIO', 'The Register', 'Politico', 'New Scientist', 'New York Times', 'The National', 'The Next Web', 'Mashable', 'Wall Street Journal', 'CNBC', 'Business Green', nan, 'Khaleej Times', 'Yahoo Politics', 'Christian Post', 'Washington Examiner', 'The San Gabriel Valley Tribune', 'NDTV', 'Hurriyet Daily News', 'Breitbart News', 'CIO', 'ABC News', 'GlobeNewswire via Yahoo Canada Finance', 'Bangladesh News 24 hours', 'Breitbart News', 'MeriTalk (blog)', 'The Atlantic', 'Eyewitness News', 'WinBeta', 'Business Insider via Yahoo! Finance', 'National Review Online', 'The Guardian Nigeria (satire) (press release) (blog)', 'The Hindu', 'GhanaWeb', 'CIO Insight', 'American Enterprise Institute', 'Zacks via Yahoo! Finance', 'Entertainment Weekly', 'WAFA - Palestine News Agency', 'The Hill', 'KCRA 3 Sacramento', 'Palestine Herald Press', 'Bloomberg', 'USA TODAY', 'American Thinker', 'Business Recorder', 'IANS India Private Limited via Yahoo! India News', 'Jerusalem Post Israel News', 'Reuters via Yahoo! Finance', 'TIME', 'MarketWatch', 'Bidness ETC', 'World Bank Group', 'International Business Times UK', 'Pamplin Media Group', 'Breitbart News', 'Information Age', 'The Economist (blog)', 'Financial Times', 'Independent Online', 'Express.co.uk', 'The Forward', 'Tribune-Review', 'Business Green', 'Windows Central', 'WND.com', 'Telegraph.co.uk', 'KLTV', 'Telegraph.co.uk', 'Digital Trends', 'Globalnews.ca', 'The Washington Times', 'VentureBeat', 'Bloomberg via Yahoo! Finance', 'PoliticusUSA', 'Greater Kashmir', 'The Week Magazine', 'Philippine Star', 'NDTV', 'Globes Online', 'AFP via Yahoo! News', 'Reuters UK', 'The Australian', 'TwinCities.com-Pioneer Press', 'CTV News', 'Reuters via Yahoo Maktoob News', 'The Globe and Mail (subscription)', 'Christian Today', 'Great Falls Tribune', 'WFXG.com', 'Business Insider', 'The Verge', 'Zacks via Yahoo! Finance', 'Fox News', 'Digital Trends', 'The Record', 'Channel NewsAsia', 'TIME', 'KYTX', 'ABC News', 'The Hindu', 'TIME', 'The Echo', 'Comcast SportsNet Philadelphia', 'Independent Online', 'The Financial Express via Yahoo! Finance India', 'RT', 'Telegraph.co.uk', 'Reuters via Yahoo! India News', 'ZDNet', 'Reuters via Yahoo! Finance', 'New America Media', 'The Guardian', 'Financial Market News', 'Topeka Capital Journal', 'Sun Sentinel', 'CNN', 'FourFourTwo via Yahoo Canada Sports', 'WAMC', 'Computerworld', 'Forbes', 'Al-Monitor', 'U.S. News & World Report', 'Slashdot', 'Economic Times', 'Sputnik US', 'New York Times', 'Market Realist via Yahoo! Finance India', 'AppAdvice', 'AAP via Yahoo!7 Finance', 'Palestine Herald Press', 'BBC News', 'The Verge', 'Independent Online', 'ITV News', 'Fortune', 'Shanghai Daily (subscription)', 'Reuters', 'Wall Street Journal', 'Rappler', 'Sky News', 'Digital Trends via Yahoo! News', 'WAFA - Palestine News Agency', 'Voice of America', 'Belarus Digest', 'Washington Post', 'Scotsman', 'Rappler', 'Sustainable Brands', 'RushLimbaugh.com', 'Daily Caller', 'AllAfrica.com', 'Daily News Egypt', 'Moneycontrol.com', 'Business Wire via Yahoo Canada Finance', 'Huffington Post', 'Digital Trends via Yahoo! Sports', 'NBC NEWS', 'TASS', 'ABC News', 'Daily Caller', 'News West 9 Midland', 'Quartz', 'Bernama', 'The Christian Science Monitor', 'CNSNews.com', 'The Nation.', 'Reuters', 'The Week Magazine', 'MIS Asia', 'Investorplace.com', 'Jakarta Post', 'gulfnews.com', 'Zacks.com', 'The Toledo Blade', 'Minneapolis-St. Paul Star Tribune', 'CNN', 'The Sun Herald', 'Consequence of Sound (blog)', 'Financial Times', 'TechCrunch', 'Bangkok Post', 'E-Pao.net', 'Fox News', 'Yorkshire Post', 'Mediaite', 'WDSU New Orleans', 'Business Recorder', 'La Crosse Tribune', 'Forbes', 'Channel NewsAsia', 'Science Recorder', 'Fox News', 'ZDNet', 'The Record', 'WAGM', 'CBC.ca', 'Irish Independent', 'AFP via Yahoo! India News', 'Reuters', 'Belfast Telegraph', 'Seattle Times', 'The Guardian', 'Lethbridge Herald', 'Center for Research on Globalization', 'Mail & Guardian Africa', 'Financial Times', 'The Epoch Times', 'Scotsman', 'WCCFtech', 'wlfi.com', 'CLTV Chicago', 'TVLine', 'Palestine Herald Press', 'Belfast Telegraph', 'TASS', 'Business Wire (press release)', 'KXNet.com', 'Washington Times', 'MENAFN', 'Breitbart News', 'The New Yorker', 'The Inquisitr', 'Fortune', 'Chattanooga Times Free Press', 'Middle East Monitor', 'Reuters', 'Boing Boing', 'Kennebec Journal & Morning Sentinel', 'Windows Central', 'AOL News', 'Channel News Asia', 'Winnipeg Free Press', 'Palestine News Network', 'XXLMAG.COM', 'YIBADA English', 'CBS Local', 'AFP via Yahoo! Finance', 'Bernama', 'Neurogadget', 'Newsmax', 'Business Insider via Yahoo! Finance India', 'Bloomberg', 'The Intercept', 'Times of Malta', 'The Express Tribune', 'Al-Manar TV', 'Express.co.uk', 'Tech Insider (blog)', 'BBC News', 'ABC6OnYourSide.com', 'Channel4000.com', 'PBS NewsHour', 'Channel NewsAsia', 'MSPoweruser.com', 'Human Capital', 'The Seattle Times', 'Daily Mail', 'Associated Press via Yahoo! News', 'Bloomberg via Yahoo! Finance', 'Elko Daily Free Press', 'PR Newswire via Yahoo! Finance', 'New York Daily News', 'Intifada Palestine', 'Philly.com', 'CNET UK', 'International Middle East Media Center', 'Bloomberg', 'PC World', 'PennLive.com', 'IGN', 'Al-Monitor', 'ZDNet', 'Wall Street Journal', 'Denver Post', 'Fox News', 'Wall Street Journal', 'Mashable', 'The Courier-Journal', 'Android Police', 'Right Wing Watch', 'Design & Trend', 'CNBC', 'Whitehouse.gov (press release)', 'Yahoo News', 'Daily Caller', 'WinBeta', 'NDTV', 'Daily Mail', 'AMEinfo', 'RushLimbaugh.com', 'Forbes', 'The Hindu', 'MIS Asia', 'Jacksonville Daily Progress', 'New Hampshire Union Leader', 'MSPoweruser.com', 'NME.com', 'The Guardian', 'Military Times', 'Financial Times', 'MSPoweruser.com', 'Softpedia News', 'Media Matters for America', 'CNN Money', 'ZDNet', 'Forbes', 'groovyPost', 'Mobile Choice', 'The Hill (blog)', 'Grist', 'Los Angeles Times', 'AFP via Yahoo! News', 'USA TODAY', 'News24', 'Business Insider', 'BusinessDay', 'CNN International', 'The National', 'StreetAuthority Network via Yahoo! Finance', 'AAP via Yahoo! New Zealand News', 'Manila Standard Today', 'Nasdaq', 'New York Times', 'Columbus Dispatch', 'Palestine Herald Press', 'The Hill', 'BetaNews', 'Billings Gazette', 'The Christian Post', 'CNET', 'PCWorld', 'Business Insider', 'American Thinker (blog)', 'Concord Monitor', 'AlterNet', 'ETFinalScore.com', 'IANS India Private Limited via Yahoo! India News', 'TASS', 'U.S. News & World Report', 'Washington Free Beacon', 'Zimbabwe Independent', 'Seeking Alpha', 'Reuters via Yahoo! Finance', 'Morning Consult', 'Shanghai Daily (subscription)', 'MyCentralJersey.com', 'Digital Spy', 'Network World', 'Lexington Herald-Leader', 'Yahoo7 News', 'Sault Star', 'NBCNews.com', 'Palestine News Network', 'CBS News', 'Business Insider', 'Al-Monitor', 'New York Times', 'Arutz Sheva', 'Environmental Working Group', 'The Guardian', 'American Enterprise Institute', 'Windows Central', 'Town Hall', 'CNBC', 'PC World', 'The Borneo Post', 'Consequence of Sound (blog)', 'International Middle East Media Center', 'Financial Market News', 'Reuters', 'rabble.ca (blog)', 'AP via Yahoo! New Zealand News', 'Business Insider via Yahoo! Finance', 'U.S. News & World Report', 'Huffington Post', 'Hot Air', 'InformationWeek', 'NewsOK.com', 'NDTV', 'Quartz', 'MIS Asia', 'The West Australian', 'The Wall Street Journal', 'CNNMoney', 'Reuters', 'ChicagoNow (blog)', 'Reuters via Yahoo! Finance', 'The Hill', 'TheStreet.com', 'Los Angeles Times', "Crain's Detroit Business (blog)", 'Palestine Herald Press', 'CNBC', 'EMQ', 'azcentral.com', 'CNET UK', 'Reuters', 'Washington Post (blog)', 'Thomson Reuters Foundation', 'USA TODAY', 'Denver Business Journal (blog)', 'Economic Times', 'BuzzFeed News', 'WinBeta', 'Zacks via Yahoo! Finance', 'CounterPunch', 'TheTower.org', 'GlobeNewswire via Yahoo! Finance', 'Associated Press via Yahoo! News', 'Express.co.uk', 'The Herald', 'Western Journalism', 'NPR', 'NDTV', 'Digital Trends via Yahoo! News', 'Deadline', 'Dallas Morning News (blog)', 'ABC News', 'Forbes', 'The Globe and Mail (subscription)', 'The Electronic Intifada', 'Twitchy', 'AFP via Yahoo! India News', 'CNN', 'Toronto Star', 'Anadolu Agency', 'Economic Times', 'Tech Times', 'International Business Times', 'The Brussels Times', 'PC World', 'TheBlaze.com', 'Daily Caller', 'Investing.com', 'Daily Signal', 'BDlive', 'Business Wire (press release)', 'The Intercept', 'Channel Partners', 'Toronto Star', 'The Washington Times', 'Daily Caller', 'Telegraph.co.uk', 'Salon.com', 'Nuvo', 'Omaha World-Herald', 'The Local.fr', 'PC World', 'Wall Street Journal (blog)', 'WJXT Jacksonville', 'Engadget', 'Jerusalem Post Israel News', 'gulfnews.com', 'The Wall Street Journal', 'WinBeta', 'The Times (subscription)', 'TASS', 'TWCN Tech News (blog)', 'Benzinga via Yahoo! Finance', 'Fortune', 'Business Standard', 'RealClearMarkets', 'MarketWatch', 'CityLab', 'AngolaPress', 'Bloomberg', 'The Hill (blog)', 'VR-Zone', 'Toronto Star', 'Bloomberg', 'Economic Times', 'Neowin', 'Fox News', 'Politicsweb', 'The Guardian', 'Business Standard', 'Al-Arabiya', 'Channel NewsAsia', 'FOXSports.com', 'New York Sun', 'Slashdot', 'wwlp.com', 'Reuters via Yahoo Canada News', 'Computerworld New Zealand', 'Telegraph.co.uk', 'The Guardian', 'The Guardian Nigeria (satire) (press release) (blog)', 'Broadcasting & Cable', 'www.worldbulletin.net', 'New York Times', 'Telegraph.co.uk', 'ANTARA', 'Reuters via Yahoo! Philippines News', 'ABC News', 'teleSUR English', 'Emirates 24|7', 'Engadget', 'Business Insider via Yahoo! Finance', 'The Huffington Post', 'The New Zealand Herald', 'U.S. News & World Report', 'Raw Story', 'Jerusalem Post Israel News', 'The Hill', 'The Inquirer', 'WND.com', 'Bloomberg', 'NSEAVoice.com', 'Press and Journal', 'Toronto Sun', 'Australia Network News', 'USA TODAY', 'MSPoweruser.com', 'Jerusalem Post Israel News', 'Wall Street Journal', 'Daily Star Gazette', 'ABC News', 'U.S. News & World Report', 'HardwareZone', 'Sabah Daily Express', 'The Herald', 'Daily Mail', 'The Intercept', 'Daily Mail', 'gulfnews.com', 'Channel NewsAsia', 'The Times (subscription)', 'Business Wire (press release)', 'The Guardian', 'CNN', 'BDlive', 'Motley Fool', 'CIO', 'New York Times', 'BDlive', 'Digital Trends via Yahoo! Finance', 'FIBA', 'The Inquisitr', 'The Hillsdale Daily News', 'Daily Caller', 'fox13now.com', 'Businessinsider India', 'Herald Scotland', 'Daily Caller', 'The Hill', 'IANS via Yahoo Maktoob News', 'Neowin', 'WinBeta', 'MarketWatch', 'Business Insider via Yahoo Maktoob News', 'SBS', 'The Globe and Mail (subscription)', 'The Hill', 'Bloomberg', 'Fortune', 'New Matilda', 'GeekWire', 'Network World', 'Associated Press via Yahoo! News', 'KLTV 7 Tyler', 'WinBeta', 'The Week Magazine', 'International Business Times', 'SalemNews.net', 'Associated Press via Yahoo! Singapore Sports', 'NPR', 'PR Newswire (press release)', 'Destructoid', 'Redmondmag.com', 'Charleston Post Courier', 'The National', 'MarketWatch', 'PSFK (blog)', 'The Australian Financial Review', 'Reuters via Yahoo Maktoob News', 'Voice of America', 'Observer', 'BetaNews', 'AllAfrica.com', 'Intifada Palestine', 'The Business Times Singapore', 'MSNBC', 'TASS', 'Bloomberg', 'Financial Post', 'Reuters', 'DNA India', 'Washington Times', 'Salon', 'MENAFN', 'Daily Mail', 'New Republic', 'Security Intelligence (blog)', 'Al-Arabiya', 'The Arab Daily News', 'CBC.ca', 'Associated Press via Yahoo! Finance', 'Kyiv Post', 'The Hindu', 'The Verge via Yahoo! News', 'Aljazeera.com', 'IT PRO', 'Nasdaq', 'South China Morning Post', 'Berkshire Eagle (subscription)', 'Washington Post', 'Irish Times', 'Material Handling & Logistics', 'PA Money News via Yahoo UK & Ireland Finance', 'Western Journalism', 'TIME', 'The Hill (blog)', 'TASS', 'Triad Business Journal (blog)', 'Business Insurance', 'Milwaukee Journal Sentinel', 'Digital Trends via Yahoo! News', 'Channel NewsAsia', 'Nikkei Asian Review', 'The Verge', 'Russia Beyond the Headlines', 'Ghacks Technology News', 'Business Insider via Yahoo! Finance', 'Politico', 'Irish Examiner', 'Arab News', 'New York Times Finance', 'BT.com', 'MENAFN', 'New Republic', 'Georgia Today', 'Montreal Gazette', 'The Hill', 'Business Wire via Yahoo UK & Ireland Finance', 'Business in Vancouver', 'Business Insider', 'Financial Times', 'Times Higher Education (THE)', 'AFP via Yahoo! News', 'Sputnik International', 'Fox Sports', 'New York Times', 'Inside Higher Ed', "Alabama's News Leader", 'Philippine Star', 'NDTV', 'Inverse', 'KCTV 5 Kansas City', 'New York Post', 'TIME', 'The Detroit News', 'Palestine Herald Press', 'East Bay Times', 'Asbury Park Press', 'Newsmax', 'Newsday', 'AllAfrica.com', 'Fortune', 'Mississippi Business Journal', 'TechCrunch', 'New York Times', 'CNN International', 'NewsBusters (blog)', 'Economic Times', 'WGNO', 'Forbes', "Today's Zaman", 'CNN', 'American Thinker (blog)', 'gulfnews.com', 'Inquirer', 'ABI Research (press release) (subscription) (blog)', 'Reuters via Yahoo! Finance', 'The Atlantic', 'Reuters UK', 'LinuxInsider.com', 'The Korea Herald', 'Winnipeg Free Press', 'Stuff.co.nz', 'Mother Jones', 'Courier Mail', 'The Detroit News', 'The National', 'Business Insider via Yahoo! Finance', 'AFP via Yahoo! India News', 'KGTV San Diego', 'Firstpost', 'Daily News & Analysis', 'Government Technology', 'Bloomberg', 'Lifehacker Australia', 'Ottawa Citizen', 'Scoop.co.nz (press release)', 'New York Times', 'NBCNews.com', 'Associated Press via Yahoo! News', 'WTHR Indianapolis', 'Chicago Daily Herald', 'Computer World Australia', 'CNBC via Yahoo! Finance', 'Fortune', 'Toronto Star', 'BGR News via Yahoo! News', 'The Register', 'CNN Money', 'Wyoming Business Report', 'WinBeta', 'Sun-Sentinel', 'CTV News', 'Black Enterprise', 'New Zealand Herald', 'Fortune', 'Seeking Alpha', 'Reuters', 'Whitehouse.gov (press release)', "Barron's (blog)", 'Shanghai Daily (subscription)', 'Thurrott.com (blog)', 'Bloomberg', 'Wall Street Journal (blog)', 'WBUR', 'New Straits Times Online', 'BuzzFeed News', 'fox6now.com', 'WMPoweruser.com', 'Washington Examiner', 'Wall Street Journal', 'NDTV', 'Digital Trends via Yahoo! News', 'KTRE Lufkin and Nacogdoches', 'AFP via Yahoo!7 News', 'Computerworld', 'Bloomberg', 'Times Daily', 'Devex', 'OregonLive.com', 'Bangkok Post', 'Business Insider Australia', 'New York Times', 'WTMJ-TV (press release) (registration) (blog)', 'American Spectator', 'The Jewish Press', 'Daily Caller', 'USA TODAY', 'Focus Taiwan News Channel', 'Daily Caller', 'Windows IT Pro', 'FierceCIO', 'Monitor Online (blog)', 'The Hill (blog)', 'TechTarget', 'The Journal News | LoHud.com', 'The Guardian', 'Telegraph.co.uk', 'The Washington Times', '10TV', 'Digital Trends via Yahoo! Sports', 'Economic Times', 'KLTV 7 Tyler', 'Ars Technica', 'The Rebel', 'ZDNet', 'The News Tribune', 'Game Informer', 'Yahoo Politics', 'RTÉ News', 'Game Rant', 'Quartz', 'The Guardian', 'Washington Post', 'MIS Asia', 'The Irish Times', 'The Nation', 'Bloomberg via Yahoo!7 Finance', 'TechSpot', 'WinBeta', 'GlobeNewswire (press release)', 'VentureBeat', 'Forbes', 'CNN.com', 'AllAfrica.com', 'Develop', 'Economic Times', 'ladepeche.fr', 'NPR', 'New York Times', nan, 'TechCrunch', 'TechRadar', 'Manchester Evening News', 'NPR', 'China Daily', 'Reuters via Yahoo! News', 'Castanet.net', 'The Guardian', 'Techcrunch', 'CNBC', 'WinBeta', 'Wall Street Journal', 'Daily Kos', 'ABC News', 'NorthJersey.com', 'Business Insider via Yahoo! Finance', 'ABC News', 'Washington Times', 'Business Wire (press release)', 'Columbus Dispatch', 'TPM', 'USA TODAY', 'AFP via Yahoo! Finance', 'The Hill (blog)', 'Newsmax', 'SiliconANGLE', 'Nasdaq', 'The Guardian', 'Channel NewsAsia', 'Fight Back! Newspaper', 'MarketWatch', 'Reuters', 'WinBeta', 'CNBC (subscription)', 'Marketwired (press release)', 'Reuters Africa', nan, 'WinBeta', 'WKBN.com', 'WMPoweruser.com', 'Quartz', 'Financial Times', 'The Herald', 'Reuters', 'CNN', 'Financial Times', 'Fox News', 'International Business Times via Yahoo UK & Ireland News', 'NEWS.com.au', 'AL.com', 'New York Times', 'Western Journalism', 'Chicago Tribune', 'Huffington Post', 'Mondoweiss', 'ProgrammableWeb', 'www.worldbulletin.net', 'National Geographic', 'Associated Press via Yahoo! Finance', 'Fudzilla (blog)', 'ZDNet', 'AFP via Yahoo! New Zealand News', 'Reuters', 'The Verge', 'Windows Central', 'Digital Trends via Yahoo! Sports', 'Gizmodo', 'Business Standard', 'PC Magazine', 'Neowin', 'ABC News', 'Lifehacker Australia', 'CBC.ca', 'StepFeed', 'Dallas Morning News', 'Washington Free Beacon', 'Arutz Sheva', 'Education Week (subscription) (blog)', 'People Magazine', 'International Business Times', 'The Indian Express', 'The Next Web', 'The Verge', 'Intifada Palestine', 'AFP via Yahoo! India News', 'TechEye', 'Marketing Land', 'Cape Breton Post', 'Washington Times', 'The Seattle Times', 'Reuters', 'Forbes', 'The Guardian', 'Mehr News Agency - English Version', 'Palestine Herald Press', 'KVUE.com', 'CNN', 'The Times (subscription)', 'The Globe and Mail', 'ZDNet', 'Times of Oman', 'MediaPost Communications', 'PC World', 'Politico', 'New York Times', 'The Conversation UK', 'Quartz via Yahoo! Finance', 'WND.com', 'Newsweek', 'The Guardian', 'Palestine News Network', 'The Wall Street Journal', 'International Business Times UK', 'The Denver Channel', 'New York Post', 'Atlanta Business Chronicle', 'Harvard Business Review', 'Sify News', 'AFP via Yahoo! News', 'Hindu Business Line', 'Kiplinger Personal Finance', 'CTV News', 'The Guardian', 'Politico', 'Market Watch', 'The Next Web', 'New York Times', 'Bloomberg via Yahoo! New Zealand Finance', 'VentureBeat', 'The Hill', 'Asia Times', 'Canada.com', 'ITProPortal', 'The Canadian Press via Yahoo Canada News', 'Breitbart News', 'Yahoo News', 'Business 2 Community', 'The Hill', 'The Wall Street Journal', 'Latin Post', 'International Business Times UK', 'The Federalist', 'Ghanaweb.com', 'The Washington Times', 'Yahoo Politics', 'CNN', 'Computerworld New Zealand', 'Tasnim News Agency (press release)', 'Arab News', 'CNBC', 'Fox Business via Yahoo! Finance', 'AFP via Yahoo! News', 'CNBC', 'WinBeta', 'Environmental Leader', 'Slate Magazine (blog)', 'SalemNews.net', 'NDTV', 'Palestine News Network', 'Business Insider', 'BBC News', 'The Hindu', 'The Fiscal Times via Yahoo! Finance', 'Associated Press via Yahoo! Philippines News', 'Bloomberg', 'Reuters', 'The Verge', 'CNBC via Yahoo! Finance', 'Jerusalem Post Israel News', 'MLive.com', 'Eyewitness News', 'InfoWorld', 'TPM', 'Softpedia News (blog)', 'Tech2', nan, 'Financial Post', 'Lincoln Journal Star', 'Financial Express', 'The Economist', 'WinBeta', 'The Independent', 'WCVB Boston', 'Bloomberg', 'Independent Media Review Analysis (IMRA)', 'Fox Sports', 'Telecompaper (subscription)', 'Richmond Times-Dispatch', 'PCWorld', 'ZDNet', 'Livemint', 'NEWS.com.au', 'New York Magazine', 'Indiana's NewsCenter', 'gulfnews.com', 'The Fiscal Times', 'The Week UK', 'West Virginia MetroNews', 'ABC News', 'CNET', 'Forbes', 'MarketWatch', 'Softpedia News', 'The Hill', 'Deadline Hollywood', 'WND.com', 'BBC News', 'New York Times', 'Market Watch', 'Softpedia News', 'Military Times', "Investor's Business Daily", 'TechCrunch', 'EJ Insight', 'IB Times via Yahoo UK & Ireland News', 'NJ.com', 'Reuters', 'Economic Times', 'ETF Daily News', 'Wall Street Journal', 'ZDNet', 'TASS', 'Investorplace.com', 'Gallup', 'Palestine Herald Press', 'Russian Information Agency Novosti', 'Intelligence Online (subscription)', 'Haaretz', 'Fortune', 'Cato Institute', 'Huffington Post', 'Today.com', 'Wall Street Journal (blog)', 'The Denver Post', 'CNBC', 'ZDNet', 'Queensland Country Life', 'Wall Street Journal', 'Forbes', 'CNBC', 'WAFA - Palestine News Agency', 'reNews', 'The Verge', 'Fox News Latino', 'New York Times', 'ZDNet', 'Reuters', 'Financial Post', 'Wall Street Journal', 'Reuters', 'Local 8 Now', 'Vancouver Sun', 'The Hill (blog)', 'WSFA 12 Montgomery', 'The Sydney Morning Herald', 'Hybrid Cars News', 'The Week Magazine', 'BusinessDay', 'Whitehouse.gov (press release)', 'Softpedia News', 'CBC.ca', 'International Business Times via Yahoo UK & Ireland News', 'Hurriyet Daily News', 'Denver Post', 'CBC via Yahoo Canada News', 'Hungary Today', 'CBS Local', 'TCC', 'Business Insider', 'Daily Mail', 'Chicago Tribune', 'International Business Times via Yahoo UK & Ireland News', 'WinBeta', 'Newsmax', 'TheWrap', 'Neowin', 'Financial Post', 'Bloomberg', 'The Guardian', 'Bloomberg Government (blog)', 'Politico', 'People Magazine', 'CNET', 'South China Morning Post (subscription)', 'Mashable', 'NBC Bay Area', 'Malay Mail Online', 'Bloomberg', 'The Wall Street Journal', 'Bloomberg via Yahoo! Finance', 'Bloomberg', 'Reuters via Yahoo! News', 'People Magazine', 'TIME', 'Oneindia', 'International Business Times via Yahoo UK & Ireland News', 'American Thinker (blog)', 'Vox', 'The Guardian', "Investor's Business Daily", 'Politico', 'CNSNews.com', 'The Verge', 'Reuters via Yahoo UK & Ireland News', 'Yibada (English Edition)', 'CBS Local', 'OregonLive.com', 'BBC News', 'CBS Sports', 'The Herald', 'Quartz', 'www.worldbulletin.net', 'FOX News Radio (blog)', 'ForexLive', 'In-Cyprus (press release) (subscription) (blog)', 'BetaNews', 'U.S. News & World Report', 'Yorkton News Review', 'Chicago Tribune', 'Money Morning Australia', 'WND.com', 'Quartz', 'Washington Post', 'The Japan Times', 'WinBeta', 'Belfast Telegraph', 'Bloomberg', 'Forbes', 'Washington Times', 'Middle East Eye', 'TechCrunch', 'News On 6', 'Intifada Palestine', 'PolitiFact', 'USA TODAY', 'Nasdaq', 'Reuters via Yahoo! Finance', 'Associated Press via Yahoo UK & Ireland News', 'ITProPortal', 'Huffington Post', 'Daily Caller', 'Fortune', 'Daily News & Analysis', 'Reporters without borders (press release)', 'Las Vegas Review-Journal', 'Times of India', 'USA TODAY', 'Reuters via Yahoo UK & Ireland News', 'Columbus Ledger-Enquirer', 'PoliticusUSA', 'Bloomberg via Yahoo! Finance', 'The Washington Times', 'Toronto Star', 'Boston Business Journal (blog)', 'Straight.com', 'New York Times', 'Business Wire via Yahoo! Finance', 'Moberly Monitor-Index', 'CNBC', 'CommonSpace', 'Forbes', 'Daily Beast', 'NPR', 'News & Observer', 'Huffington Post Canada', 'Telegraph.co.uk', 'Bloomberg', 'Al-Ahram Weekly', 'Buffalo News', 'Huffington Post', 'KLTV', 'The Atlantic via Yahoo! News', 'Associated Press via Yahoo! News', 'MSPoweruser.com', 'Reuters via Yahoo! News', 'TechRadar', 'ENPI Info Centre', 'Press-Enterprise', 'Washington Post', 'Attack of the Fanboy', 'euronews', 'The Hill', 'CNBC', 'Reuters', 'Cape Business News', 'Breitbart News', 'Stuff', 'Bloomberg', 'WinBeta', 'The Globe and Mail', 'Sputnik International', nan, 'AFP Relax News via Yahoo! News', 'TheBlaze.com', 'American Thinker', 'Daily Mail', 'AlterNet', 'Salon', 'CBC.ca', 'AFP via Yahoo! India News', 'Forbes', 'Muncie Star Press', 'Palestine News Network', 'Pakistan Observer', 'fox13now.com', 'ZDNet', 'PC World', 'Jezebel', 'MSPoweruser.com', 'Daily Mail', 'Fast Company', 'Austin American-Statesman', 'Australia Network News', 'Windows Central', 'ESPNcricinfo.com', 'Associated Press via Yahoo! Finance', 'Right Wing Watch', 'Channel NewsAsia', 'Daily Kos', 'Latin Post', 'Arutz Sheva', 'Al Jazeera via Yahoo Maktoob News', 'Philly.com (blog)', 'Tech Media Network (Tom's Guide) via Yahoo! News', 'Palestine News Network', 'Business Insider', 'Wall Street Journal', 'Android Authority (blog)', 'Denver Post', 'Fortune', 'RT', 'The ', 'Nasdaq', 'WinBeta', 'CNBC', 'New York Times', '+972 Magazine', 'ABC News', 'Wall Street Journal', 'Reuters', 'THISDAY Live', 'Toronto Star', 'The Washington Times', 'WAPT Jackson', 'AllAfrica.com', 'EurekAlert!', 'CNN', 'The Next Web', 'Fox News', 'Huffington Post', 'SNAPPA Technology via Yahoo UK & Ireland News', 'The Guardian', 'Al Jazeera America', 'TASS', 'MacNN', 'Bloomberg via Yahoo! Finance', 'Washington Times', 'India Today', 'Tech Times', 'NAIJ.COM', 'Bloomberg', 'The Herald', 'The Hill', 'Softpedia News', 'Daily Mail', 'ABC News', 'The Weekly Standard', 'Morning Star Online', 'The Straits Times', 'The Economist', 'News24', 'The Independent', 'malaysiandigest.com', 'Miami Herald', 'Financial Times', 'Mashable', 'NJ.com', 'Washington Post', 'Business Insider', 'Associated Press via Yahoo! News', 'Voice of America', 'The Economist', 'DNA India', 'The Australian Financial Review', 'Daily Signal', 'Daily Sabah', 'Windows Central', 'U-T San Diego', 'Forbes', 'The Times of Israel', 'The Guardian', 'Techworm', 'Morningstar', 'Zolmax', 'WND.com', 'Washington Times', 'TechRitual', 'KOLO', 'Vanguard', 'Your Houston News (blog)', 'CNN', 'The Guardian', 'Fox News', 'Radio New Zealand', 'Philly.com', 'ABC News', 'Forward', 'NBCSports.com', 'Bloomberg', 'Channel NewsAsia', 'Politico', 'TwinCities.com-Pioneer Press', 'KERA North Texas', 'ARNnet', 'Jerusalem Post Israel News', nan, 'Greensboro News & Record', 'Arutz Sheva', 'Reuters via Yahoo! Finance', 'Tuscaloosa News (subscription)', 'WGAL 8 Susquehanna Valley', 'Columbus Dispatch', 'Kansas City Business Journal', 'Associated Press via Yahoo! News', 'New York Times', '9NEWS.com', 'Business Insider', 'Tempo.co', 'Reuters UK', 'wivb.com', 'Forbes', 'Washington Examiner', 'New York Times', 'WGAL 8 Susquehanna Valley', 'Democracy Now!', 'Bloomberg', 'The Guardian', 'CKGSB Knowledge', 'CBC.ca', 'MIS Asia', 'New York Post', 'Prague Post', 'TechEye', 'TechRepublic via Yahoo! News', 'The Indian Express', 'Mondoweiss', 'Nikkei Asian Review', 'Western Journalism', 'Thurrott.com (blog)', 'Patriot Post', 'KAUZ-TV', 'Channel NewsAsia', 'NJ.com', 'TeenVogue.com', 'gulfnews.com', 'TIME', 'Business Insider', 'MSPoweruser.com', 'The Verge', 'Wall Street Journal (blog)', 'The Business Times Singapore', 'Tech Insider (blog)', 'NewsDay', 'Daily Mail', 'Fortune', 'CNBC', 'Bloomberg', 'The Washington Times', 'Intifada Palestine', 'Reuters via Yahoo! News', 'Vancouver Sun (blog)', 'CNET', 'Scroll.in', 'ANI via Yahoo! India News', 'Huffington Post', 'Forbes', 'VentureBeat', 'The Korea Herald', 'CBS 6 Richmond', 'Eurasia Review', 'Daily Record', 'Neowin', 'Breitbart News', 'Economic Times', 'Fortune', 'Financial Times', 'Seeking Alpha', 'Green Left Weekly', 'NPR', 'MSNBC', 'Associated Press via Yahoo! News', 'Catholic News Agency', 'ZDNet', 'Times of India', 'TASS', 'Laptop Mag', 'Daily Caller', 'ValueWalk', ' ', 'FXStreet', 'Mother Jones', 'The Verge via Yahoo! News', 'NJ.com', 'Power Line (blog)', 'TheStreet.com', 'seattlepi.com', 'Hot Air', 'Hot Air', 'BreakingNews.ie', 'InfoWorld', 'DNA India', 'BLABBERMOUTH.NET', 'Daily News & Analysis', 'The Wall Street Journal', 'RT', 'New York Times', 'Financial Times', 'Mintpress News (blog)', 'Daily Mail', 'The Hill', 'Jakarta Post', 'The Times of Israel', 'The Coloradoan', 'Johnson City Press', 'Seattle Times', 'NBC Chicago', 'Daily Mail', 'ANTARA', 'gulfnews.com', 'Times of India', 'eWeek', 'Hot Air', 'BetaNews', 'CNN Money', 'Bleeding Cool News', 'American Thinker', 'MSNBC', 'ABC Online', 'Associated Press via Yahoo! News', 'Mississippi Business Journal', 'Hurriyet Daily News', 'Financial Times', 'ABC News', 'Daily Mail', 'Vanguard', 'The Guardian', 'NBCNews.com', 'Out-Law', 'Seattle Times', 'WJXT Jacksonville', 'CNET', 'Associated Press via Yahoo UK & Ireland News', 'NPR', 'Financial Market News', 'Haaretz', 'CNW Group via Yahoo Canada Finance', 'Mediaite', 'Crookston Daily Times', 'FOX 61', 'The Guardian (blog)', 'Fox Business', 'AAP via Yahoo!7 News', 'Gazette News', 'The Atlantic', 'Nasdaq', 'The Hill (blog)', 'Pravda', 'Reuters', 'CNN Money', 'MarketWatch', 'VG247', 'American Thinker', 'MarketPulse (blog)', 'Washington Free Beacon', 'The Hindu', 'Daily Sabah', 'FOX 28 South Bend', 'Digital Trends via Yahoo! Sports', 'Committee for Accuracy in Middle East Reporting in America (blog)', 'Inquirer.net', 'New York Times', 'The Week Magazine', 'The Standard', 'The Hill', 'AAP via Yahoo! New Zealand Finance', 'CNN Money', 'Irish Times', 'The Fiscal Times', 'Reuters', 'PR Newswire via Yahoo! Finance', 'CNBC via Yahoo! Finance', 'Washington Post', 'Digital Trends via Yahoo! News', 'The Hill (blog)', 'Strategy Page', 'The Boston Globe', 'CBS News', 'Associated Press via Yahoo! News', 'Fox News', 'VOA News', 'CNN', 'Huffington Post (blog)', 'Digital Trends via Yahoo! Sports', 'Washington Post', 'MSPoweruser.com', 'Wall Street Journal', 'China.org.cn', 'Reuters', 'The Guardian', 'Washington Times', 'International Business Times', 'Politico', 'International Business Times', 'Workers World', 'The Hill', 'BBC News', 'Consumer Reports via Yahoo! Finance', 'The Times of Israel', 'Free Malaysia Today', 'Softpedia News', 'WND.com', 'Hot Air', 'Yahoo News', 'FXStreet', 'TechNewsWorld', 'gulfnews.com', 'Starr 103.5 FM', 'The Huffington Post', 'Fox News', 'Windows Central', 'Valley News', 'SooToday.com', 'Los Angeles Times', 'Palestine News Network', 'FT Alphaville (registration)', 'WinBeta', 'Quartz', 'Mediaite', 'Wall Street Journal (subscription)', 'Reuters UK', 'Redmondmag.com', 'The Atlantic', 'Bloomberg', 'The Register', 'International Business Times, India Edition', 'MRCTV (blog)', 'Associated Press via Yahoo! Finance', 'bit-tech.net', 'The Straits Times', 'DNA India', 'Palestine News Network', 'Livemint', 'The Christian Science Monitor', 'PC World', 'Saskatoon StarPhoenix', 'AAP via Yahoo!7 News', 'Digital Trends via Yahoo! News', 'KSHB-TV Kansas City', 'NT News', 'Fox News', 'Livingston Daily', 'Mashable', 'Financial Post', 'Calgary Herald', 'TechRepublic', 'Twitchy', 'CNBC', 'The Nation.', 'Forbes', 'The Hilltop News', 'The Desert Sun', 'Yorkshire Post', 'International Business Times UK', 'Los Angeles Times', 'The Chicago Maroon', 'Channel NewsAsia', 'The Wall Street Journal', '9 to 5 Mac', 'SiliconANGLE (blog)', 'Huffington Post UK', 'Fox Business', 'MSDynamicsWorld.com', 'Niagara Falls Review', 'FXStreet', 'Yahoo Finance UK', 'MIS Asia', 'The Australian Financial Review', 'TIME', 'The Hill (blog)', 'News On 6 Tulsa', 'Economic Times', 'AFP via Yahoo! India News', 'Mediaite', 'Business Insider via Yahoo UK & Ireland Finance', 'Associated Press via Yahoo UK & Ireland News', 'CounterPunch', 'Washington Times', 'Daily Signal', 'Reuters', 'Finextra (press release)', 'TheStreet.com', 'Economic Times', 'Adweek', 'AFP via Yahoo! India News', 'The New American', 'Hindustan Times', 'Redress Information & Analysis', 'New York Times', 'MSPoweruser.com', 'The Guardian', 'NextShark', 'Press Release Rocket', 'Center for Research on Globalization', 'StreetInsider.com', 'Express.co.uk', 'CBS News', 'Bloomberg', 'euronews', 'Belleville News-Democrat', 'ABC News', nan, 'The Verge', 'AAP via Yahoo!7 Finance', 'GMA News Online', 'The Guardian Nigeria (satire) (press release) (blog)', 'Daily Pakistan', '9 to 5 Mac (press release)', 'TMZ.com', 'Globalnews.ca', 'AOL News', 'Phone Arena', 'Bloomberg', 'Arutz Sheva', 'NPR', 'PR Newswire (press release)', 'Washington Post', 'Belfast Telegraph', 'The Tennessean', 'Motley Fool', "Today's Zaman", 'The Wall Street Journal', 'The Coast', 'Vox', 'Engadget', 'Forbes', 'Metro', 'USA TODAY', 'Sputnik International', 'China.org.cn', 'Businessinsider India', 'The New Zealand Herald', 'Chicago Tribune', 'Deccan Chronicle', 'The Conversation AU', 'Reuters', 'CNNMoney', 'Reuters UK', 'The Star Online', 'Sydney Morning Herald', 'Daily News & Analysis', 'Reuters via Yahoo! Finance', 'Business Insider', 'CNET', 'Insurance Journal', 'The Australian', 'The Wall Street Journal', 'Southernminn.com', 'Gulf Today', 'Reuters', 'Western Journalism', 'The Punch', 'Times LIVE', 'AFP via Yahoo! Finance', 'The Forward', 'The Hindu', 'ComputerworldUK', 'International Business Times', 'Investopedia', 'Anadolu Agency', 'The Fresno Bee', 'Mediaite', 'The Straits Times', 'Washington Post', 'Softpedia News', 'Bangkok Post', 'Reuters via Yahoo UK & Ireland News', 'ZDNet', 'Brookings Institution', 'The Hill', 'AnandTech', 'Atlanta Journal Constitution', 'Omaha World-Herald', 'Associated Press via Yahoo Maktoob News', 'AFP via Yahoo! India News', 'The Next Web', 'Wired News', 'CNN Money', 'FXStreet', 'New York Post', 'American Free Press', 'CTV News', 'MIS Asia', 'USA Today', 'Ozy via Yahoo! News', 'PCWorld', 'BDlive', 'Huffington Post', 'ABC News', 'Softpedia News', 'Digital Trends via Yahoo! News', 'New Zealand Herald', 'Huffington Post', 'Business Insider', 'PC World', 'The News-Press', 'BetaNews', 'Fortune', 'Czech Happenings', 'BGR News via Yahoo! News', 'The Verge', 'Intifada Palestine', 'The Guardian', 'VentureBeat', 'Bloomberg', 'CounterPunch', 'Malay Mail Online', 'The Christian Science Monitor', 'Nasdaq', 'Forbes', 'TASS', 'New York Daily News', 'Business Insider via Yahoo! Finance', 'Newstalk 106-108 fm', 'TechCrunch', 'Bloomberg', 'PoliticusUSA', 'Western Journalism', 'The Daily Vox (blog)', 'Fox News Latino', 'Hot Air', 'International New York Times', 'Yahoo Finance', 'Jewish Telegraphic Agency', 'American Thinker (blog)', 'Reuters', 'Malay Mail Online', 'LBC 97.3', 'KGO-TV Bay Area', 'V3.co.uk', 'Windows Central', 'Scotsman', 'The Scotsman', 'USA TODAY', 'Business Insider', 'The Verge', 'Washington Times', 'International Business Times via Yahoo UK & Ireland News', 'NBC NEWS', 'Bloomberg', 'Milwaukee Journal Sentinel', 'The Canadian Press via Yahoo Canada Finance', 'Associated Press via Yahoo! Finance', 'Press-Enterprise', '89.3 KPCC', 'Associated Press via Yahoo! Finance', 'Forbes via Yahoo! Finance', 'NPR', 'Metrotvnews.com', 'Reuters via Yahoo! News', 'NBC NEWS', 'wigantoday.net', 'ABC News', 'Boston Herald', 'Reuters', 'Wall Street Journal', 'Business Standard', 'Associated Press via Yahoo! Finance', 'CNN', 'MediaPost Communications', 'Mother Jones', 'MetroWest Daily News', 'Bucks.com', 'Autoblog (blog)', 'Western Journalism', 'Breitbart News', 'CNBC', 'International Middle East Media Center', 'Computerworld', 'Market Realist via Yahoo UK & Ireland Finance', 'The Indian Express', 'ReadWrite', 'Financial Times', 'PC World', 'Raw Story', 'NJ.com', 'The News-Times', 'Digital Trends via Yahoo! News', 'USA TODAY', 'bnn.ca', 'WWD', 'Boston Herald', 'ABC News', 'Windows Central', 'Financial Post', 'New Straits Times Online', 'Reuters via Yahoo! News', 'Straight.com (blog)', 'The Business Times Singapore', 'Associated Press via Yahoo! News', 'Business Standard', 'AzerNews', 'BusinessDay', 'Times of India', 'ABS-CBNNEWS.com', 'Times LIVE', 'International Business Times via Yahoo UK & Ireland News', 'Times of India', 'WinBeta', 'Daily Caller', 'The Hill', 'Minneapolis-St. Paul Star Tribune', 'San Angelo Standard Times', 'Channel NewsAsia', 'AllAfrica.com', ' ', 'GeekWire', 'Daily Mail', 'The ', 'Los Angeles Times', 'Huffington Post', 'BuzzFeed News', 'Asia Times', 'ArabianBusiness.com', 'The Hill', 'The News International', 'Washington Post', 'U.S. News & World Report', 'SiliconIndia', 'Profit Confidential', 'The San Diego Union-Tribune', 'Huffington Post Australia', 'Parksville Qualicum Beach News', 'New York Post', 'AllAfrica.com', "Investor's Business Daily", 'TheStreet.com', 'The Register', 'Yahoo Finance', 'Chillicothe Gazette', 'Wonkette (satire) (blog)', 'The Hindu', 'Bloomberg', 'ForexLive', 'U.S. News & World Report (blog)', 'Eurogamer.net', 'Digital Trends via Yahoo! Sports', 'VentureBeat', 'Seeking Alpha', 'CIO Today', 'Morning Journal News', 'SlashGear', 'Bernama', 'International Business Times via Yahoo UK & Ireland News', 'The Star Online', 'WANE', 'Business Insider via Yahoo! Finance', 'Tech Insider via Yahoo UK & Ireland News', 'CBS Local', 'GMA News Online', 'PCWorld', 'Sify News', 'Windows Central', 'Daily News & Analysis', 'The Washington Times', 'the Irish News', 'Lifehacker Australia', 'Computerworld', 'UPI.com', 'WinBeta', 'Yahoo Finance', 'AS/COA Online', 'FOX 8 WGHP', 'TechCrunch', 'OneNewsNow', 'WNBA.com', 'WinBeta', 'CNBC', 'The News Herald', 'The Root', 'WTOP', 'Daily Kos', 'FrontPage Magazine', 'Seeking Alpha', 'Huffington Post', 'The Weekly Standard (blog)', 'CNBC', 'Breitbart News', 'CNN', 'NDTV', 'Financial Times', 'Salon', 'Business Insider', 'Otago Daily Times', 'Viet Nam News', 'Le T\x9d\x9dl\x9d\x9dgramme', 'Hollywood Reporter', 'Antiwar.com', 'CBS News', 'Yahoo Finance', 'Hot Air', 'Yakima Herald-Republic', 'Columbia Daily Tribune', 'WAFA - Palestine News Agency', 'Associated Press via Yahoo! Singapore News', 'Washington Post', 'BigPond News', 'Autoblog (blog)', 'Ukraine Today', 'Wall Street Journal (blog)', 'Passport Magazine', 'Business Recorder', 'Reuters', 'CTV News', 'NBC4i.com', 'Computerworld', 'The Hill', 'Salt Lake Tribune', 'The Guardian', 'WDSU New Orleans', 'MIS Asia', 'For The Win', 'Calgary Herald', 'CNN', 'Bloomberg', 'Arutz Sheva', 'New York Daily News', 'Associated Press via Yahoo Maktoob News', 'Democracy Now!', 'The Canadian Press via Yahoo Canada News', 'American Spectator', 'BBC News', 'Reuters', 'Reuters via Yahoo! News', 'ABC News', 'Chicago Tribune', 'FXStreet', 'Washington Post', 'TheStreet.com', 'Reuters UK', 'DesMoinesRegister.com', 'Wall Street Journal', 'TASS', 'CityNews', 'Associated Press via Yahoo!7 Finance', 'FXStreet', 'The Daily Mining Gazette', 'MarketWatch', 'Bloomberg', 'Neurogadget', 'BreakingNews.ie', 'Telegraph.co.uk', 'Financial Times', 'Bloomberg', 'TheStreet.com', 'Sputnik International', 'Forbes', 'The Daily Star', nan, 'MSPoweruser.com', 'The Press', 'Yahoo Autos', 'Reuters Middle East via Yahoo Maktoob News', 'The Nation', 'Mondoweiss', 'Haaretz', 'NJ.com', 'American Thinker', 'Bloomberg', 'Huffington Post', 'Wired News', 'Zacks.com', 'Associated Press via Yahoo UK & Ireland Finance', 'The Canadian Press via Yahoo Canada News', 'MarketWatch', 'Newsweek', 'ABS CBN News', 'Politico', 'ATTN', 'MyDaytonDailyNews', 'Al-Bawaba', 'News & Observer', 'The Express Tribune', 'Nasdaq', 'Associated Press via Yahoo! News', 'The Guardian', 'Fortune', 'Business Insider Australia', 'CNN Money', 'Economic Times', 'Spiked', 'Daily Reckoning - Australian Edition', 'Minneapolis-St. Paul Star Tribune', 'Chicago Tribune', 'Huffington Post Canada', 'The Boston Globe', 'Apple Insider', 'The Register', 'Redmond Channel Partner', 'groovyPost', 'TASS', 'GhanaWeb', 'PoliticusUSA', nan, 'Breitbart News', 'Ynetnews', 'Business Insider', 'MIS Asia', 'Business Wire via Yahoo Canada Finance', 'LifeNews.com', 'Deutsche Welle', 'Business Mirror', 'NDTV', 'Irish Times', 'Reuters UK', 'Nikkei Asian Review', 'Western Journalism', 'Daily Signal', 'Smithsonian', 'Business Insider via Yahoo! Finance India', 'VentureBeat', 'Economic Times', 'The Detroit News', 'ABC News via Yahoo! News', 'VentureBeat', 'Globalnews.ca', 'Associated Press via Yahoo! Finance', 'GreenBiz', 'The Hill', 'AdAge.com', 'Computer World Australia', 'Market Watch', 'News24', 'MIS Asia', 'Equal Times', 'Newsmax', 'Know Your Mobile', 'Zacks via Yahoo!7 Finance', 'European Parliament (press release)', 'Washington Times', 'The Japan Times', 'RealClearPolitics', 'Wall Street Journal', 'Radio New Zealand', 'Reuters', 'Thomson Reuters Foundation', 'MSPoweruser.com', 'thejournal.ie', 'Ahram Online', 'The Nation', 'Washington Post (blog)', 'Ghanaweb.com', 'The Marijuana Times', 'Texarkana Gazette', 'Sydney Morning Herald', 'ZDNet', 'Wonkette (satire) (blog)', 'Worcester Telegram', 'DNA India', 'Bearing Arms', 'The Verge', 'Telegraph.co.uk', 'AFP via Yahoo! News', 'Economic Times', 'World Socialist Web Site', 'Scoop.co.nz', 'AFP via Yahoo! News', 'Toronto Star', 'Business Insider', 'The Hill (blog)', 'Sportsnet.ca', 'Nikkei Asian Review', 'Bloomberg', 'The News International', 'Cops 2.0', 'FourFourTwo', 'KCCI Des Moines', 'New York Times', 'Scranton Times-Tribune', 'ABC News', 'Mirror.co.uk', 'Computerworld', 'Devils Lake Journal', 'The Hill (blog)', 'The Verge', 'ABC News', 'Street Updates', 'Economic Times', 'Lifehacker', 'Khaleej Times', 'CNN International', 'ARNnet', 'Wall Street Journal (blog)', 'Daily News & Analysis', 'ZDNet', 'Press TV', 'Jerusalem Post Israel News', 'WEAU', 'AllAfrica.com', 'RadioFreeEurope/RadioLiberty', 'TechCrunch', 'Western Journalism', 'Al-Monitor', 'Bloomberg', 'The Straits Times', 'The News Journal', 'The Guardian', 'The Australian Financial Review', 'Google (press release)', 'Saudi Gazette via Yahoo Maktoob News', 'Huffington Post', 'USA TODAY', 'South China Morning Post (subscription)', 'BurlingtonFreePress.com', 'Al-Monitor', 'WND.com', 'Albuquerque Business First (blog)', 'Softpedia News', 'Rochester Democrat and Chronicle (blog)', 'New Kerala', 'Lockport Union-Sun & Journal', 'Bloomberg via Yahoo!7 Finance', 'Bloomberg', 'Daily Mail', 'CNET UK', 'NBC NEWS', 'New York Daily News', '630ched.com', 'Phys.Org', 'Daily Mail', 'Right Wing Watch', 'Reuters via Yahoo! News', 'Atlanta Journal Constitution', 'KOMO News', 'ABC News', 'The American Conservative', 'MTV.com', 'MENAFN', 'Salon', 'TechNewsWorld', 'WinBeta', 'Jerusalem Post Israel News', 'Business Insider', 'Mediaite', 'Fox 2 Detroit', 'The Rock Hill Herald', 'Financial Times', 'iTWire', 'Wall Street Journal (blog)', 'New York Post', 'Middle East Confidential', 'BT.com', 'CNN', 'ZDNet', 'Bloomberg', 'The Independent', 'The Hill (blog)', 'Free Malaysia Today', 'Macworld (blog)', 'CNSNews.com', 'Mirror.co.uk', 'Fox Sports', 'Palestine News Network', 'Twitchy', 'National Post', 'WMUR Manchester', 'Ukraine Today', 'Al-Monitor', 'Palestine Herald Press', 'New York Times', 'NDTV', 'Bloomberg', 'AFP via Yahoo! News', 'Sojourners', 'Yahoo Tech', 'Investopedia', 'KRCRTV.COM', 'Maine Public Broadcasting', 'Algemeiner', 'CBC via Yahoo Canada News', 'Reuters via Yahoo! Finance', 'Daily Sabah', 'Quartz', 'The Seattle Times', 'ForexLive', 'Stuff.co.nz', 'Business Insider UK Finance via Yahoo UK & Ireland Finance', 'Tech Insider', 'Fox News', 'Virtualization Review (blog)', nan, 'The Federalist', 'Washington Post', 'Bloomberg', 'Washington Times', 'International Business Times', 'NJ.com', 'Hellenic Shipping News Worldwide', 'WNYC', 'Fox News', 'Hot Air', 'WinBeta', 'Town Hall', 'Sputnik International', 'Stuff.co.nz', 'Business Wire via Yahoo UK & Ireland Finance', 'Ynetnews', 'ABC News', 'U.S. News & World Report', 'WJXT Jacksonville', 'Prensa Latina', 'nwitimes.com', 'Houston Public Media', 'TechRadar', 'Daily Beast', 'Eater', 'The Indian Express via Yahoo! India News', 'Forbes', 'Baltimore Sun', 'The Fiscal Times', 'Washington Post', 'TechRepublic', 'For The Win', 'Deutsche Welle', 'Wall Street Journal (blog)', 'Al-Bawaba', 'RTÉ News', 'Deadline', 'CSO Online', 'The Wall Street Journal', 'IT World', 'Reuters', 'The Detroit News', 'The Straits Times', 'The Washington Times', 'Deutsche Welle', 'ABC News', 'The Hill', 'Stuff.co.nz', 'The Record', 'Sahara Reporters', 'The Christian Science Monitor', 'TheBlaze.com', 'MSPoweruser.com', 'The Guardian', 'Daily News & Analysis', 'Boston.com', 'Softpedia News', 'NPR', 'Daily Mail', 'www.worldbulletin.net', 'ABC News', 'The Indian Express', 'The Guardian', 'Economic Times', 'WinBeta', 'Times of India', 'AFP via Yahoo! News', 'Information Age', 'The New Indian Express', 'Reuters', 'Inverse', 'The Washington Times', 'ABC News', 'ZDNet', 'AFP via Yahoo UK & Ireland News', 'Associated Press via Yahoo! India News', 'Daily Signal', 'FOX31 Denver', 'Haaretz Daily', 'TechSpot', 'GhanaWeb', 'Inc.com', 'Breitbart News', 'The News International', 'ZDNet', 'WSFA 12 Montgomery', 'The Indian Express', 'Digital Journal', 'Natural Resources Defense Council (blog)', 'Minnesota Public Radio', 'The Guardian', 'WTOP', 'Sputnik International', 'ComputerWeekly.com (blog)', 'The Canadian Press via Yahoo Canada News', 'Big Think (blog)', 'GlobeNewswire via Yahoo! Finance', 'Seattle Times', 'The Detroit News', 'Reseller News', 'ZDNet', 'FXStreet', 'AppAdvice', 'CNN', 'CNBC', 'The Manila Times', 'EconoTimes', 'MSPoweruser.com', 'The Advocate', 'Neowin', 'ITProPortal', 'The Wall Street Journal', 'Mirror.co.uk', 'The Washington Times', 'WXYZ-TV Detroit', 'Globes', 'Breitbart News', 'The Prince Albert Daily Herald', 'Minneapolis Star Tribune', 'UD Daily', 'BizPac Review', 'CounterPunch', 'Washington Post', 'Russia Beyond the Headlines', 'PRWeb', 'MarketWatch', 'U.S. News & World Report', 'Stabroek News', 'TWCN Tech News (blog)', 'CNBC', 'The Verge', 'Irish Independent', 'Reuters via Yahoo Canada News', 'Forbes', 'WMBF News Myrtle Beach', 'Associated Press via Yahoo UK & Ireland News', 'Boston Herald', 'Inside Higher Ed', 'Reuters', 'Jackson Free Press', 'MSPoweruser.com', 'Salon.com', 'fox8.com', 'Wonkette (satire) (blog)', 'Polygon', 'Bloomberg', 'The Washington Times', 'Ahlul Bayt News Agency (press release)', 'The Hill', 'Daily Caller', 'Reuters via Yahoo! Finance', 'gulfnews.com', 'Sputnik International', 'Economic Times', 'CBC.ca', 'gulfnews.com', 'Seeking Alpha', 'Forward', 'Orlando Sentinel', 'Tasnim News Agency (press release)', 'WPTZ The Champlain Valley', 'Reuters via Yahoo! Sports', 'Bloomberg View', 'InStyle', 'Times of India', 'The Globe and Mail (subscription)', 'BetaNews', 'AFP via Yahoo! News', 'CNN Money', nan, 'The Fresno Bee', 'Gizmag', 'PerezHilton.com', 'Times of India', 'Google (press release)', 'Economic Times', 'Thurrott.com (blog)', "Investor's Business Daily", 'Times LIVE', 'euronews', 'RenewEconomy', 'Market Realist via Yahoo! Finance', 'ZDNet', 'Huffington Post UK', 'Shillong Times', 'The Guardian', 'New Republic', 'whotv.com', 'WinBeta', 'CNN International', 'Bleacher Report', 'IANS via Yahoo Maktoob News', 'The Wall Street Journal', 'MarketWatch', 'MSPoweruser.com', 'Sydney Morning Herald', 'TechRadar', 'Forbes', 'EconomyWatch.com', 'FXStreet', 'NewsDay', 'Daily Mail', 'Nikkei Asian Review', 'Haaretz', 'Associated Press via Yahoo! Finance', 'FreshPlaza', 'Business Standard', 'The Standard Digital News (satire) (press release) (registration) (blog)', '9 News Denver', 'People Magazine', 'AAP via Yahoo!7 Finance', 'cleveland.com', 'Politico', 'Jezebel', 'The Seattle Times', 'The Guardian', 'Huffington Post', 'USA TODAY', 'San Francisco Examiner', 'International Business Times', 'Bloomberg', 'Quartz', 'The Hill (blog)', 'Yahoo Finance', 'The Hindu', 'Daily News & Analysis', 'BreakingNews.ie', 'AL.com', 'NDTV', 'AOL News', 'AFP via Yahoo! Finance', 'Forbes', 'Neowin', 'Hot Hardware', 'Seeking Alpha', 'The Mercury', 'Washington Times', 'Digital Trends via Yahoo! Sports', 'The Indian Express', 'Daily Mail', 'Financial Express', 'CNN', 'Times LIVE', 'The Australian', 'ESPN FC (blog)', 'NBC New York', 'Mobile Burn', 'The Moose Jaw Times Herald', 'TechCrunch', 'Gawker', 'Associated Press via Yahoo! News', 'ZDNet', 'AFP via Yahoo!7 Finance', 'WLOX-TV Biloxi', 'Palestine Herald Press', 'News24', 'GamingBolt', 'Environmental Data Interactive Exchange', 'Romper', 'ChemicalOnline', 'New York Post', 'The Guardian', 'The Atlantic via Yahoo Canada News', 'FXStreet', 'PC World', 'Financial Times', 'Phone Scoop', 'Vanguard', 'Japan Today', 'PR Newswire via Yahoo! Finance', 'Neurogadget', 'ABC 7 Gulfshore News', 'Financial Times', 'The Guardian', 'Forbes', 'RT', 'The American Prospect', 'Market Realist via Yahoo! Finance', 'The Hindu', 'The Guardian', 'Morning Journal News', 'South China Morning Post (subscription)', 'Yahoo News', 'Daily Signal', 'Fresno Bee', 'Reuters', 'Southeast Missourian', 'International Business Times', 'WCVB Boston', 'Africanews', 'Softpedia News', 'Thurrott.com (blog)', 'Reuters', 'The Sheboygan Press', 'Digital Trends via Yahoo! News', 'WJXT Jacksonville', 'Macleans.ca', 'Irish Times', 'Digital Trends via Yahoo! Sports', 'Daily Caller', 'Asahi Shimbun', 'ZDNet', 'Los Angeles Daily News', 'New York Post', 'The Next Web', 'Cape Breton Post', 'The Verge', 'ZDNet', 'WinBeta', 'MSPoweruser.com', 'Telegraph.co.uk', nan, 'New Zealand Herald', 'Daily Sabah', 'Chicago Tribune', 'www.worldbulletin.net', 'Computerworld', 'The Hill', 'The Youngstown Vindicator', 'BDlive', 'News One', 'Times of India', 'Bloomberg', 'Marketwired via Yahoo UK & Ireland Finance', 'Marketing Interactive', 'Hot Air', 'Daily Mail', 'www.worldbulletin.net', 'Chicago Tribune', 'Manila Bulletin', 'WinBeta', 'NPR', 'The Verge', 'The Herald-Times (subscription)', 'The Star, Kenya', 'DailyPost Nigeria', 'Washington Free Beacon', 'Reuters', 'The Seattle Times', 'Reuters', 'CNN Money', 'Washington Post', 'Bloomberg', 'Mail & Guardian Africa', 'International Business Times via Yahoo UK & Ireland News', '24/7 Wall St.', 'Nikkei Asian Review', 'SiliconANGLE', 'EuroNews', 'People Magazine', 'Business Wire (press release)', 'Daily Mail', 'ABC News', 'Hurriyet Daily News', 'Las Vegas Review-Journal', 'Morning Journal News', 'Multi-Housing News', 'ABC News', 'New York Times', 'Financial Times', 'The Age', 'SportsGrid', 'Economic Times', 'Xconomy', 'International Business Times, India Edition', 'Raw Story', 'Ottawa Citizen', nan, 'Access Hollywood', 'Yahoo News', 'The Wall Street Journal', 'Reuters', 'Daily Signal', 'The Week Magazine', 'MIS Asia', 'Seeking Alpha', 'BBC News', 'The Christian Science Monitor', 'WTOP', 'BuzzFeed News', 'Sky News via Yahoo UK & Ireland Finance', 'Firstpost', 'Healthcare IT News', 'CNBC', 'CNNMoney', 'The Guardian', 'Washington Post', 'CTV News', 'CNN', 'Reuters via Yahoo! Finance', 'CNET', 'PBS NewsHour', 'Business Insider via Yahoo Maktoob News', 'Business In Savannah', 'The Globe and Mail', 'Washington Post', 'Reuters', 'Digital Trends via Yahoo! News', 'AFP via Yahoo! News', 'New York Times', 'AFP News via Yahoo! Philippines News', 'AFP via Yahoo! India News', 'CNN Money', 'Windows IT Pro', 'KTUU.com', 'USA TODAY', 'Bitbag', 'NPR', 'U-T San Diego', 'WTOP', 'Firstpost', 'Fox News Insider', 'NewsFactor Network', 'Christian News Network', 'The Age', 'Midlothian Exchange', 'The Indian Express', 'Ottawa Sun', 'Free Malaysia Today', 'National Post', 'SuperSite for Windows', 'NPR', 'Financial Times', 'eWeek', 'Business Insider via Yahoo! Finance', 'The Next Web', 'Calgary Sun', 'New Kerala', 'The New Indian Express', 'AFP via Yahoo! News', 'Chicago Tribune', 'Center for Research on Globalization', 'Stuff.co.nz', 'The Star', 'Reuters via Yahoo! Finance', 'iTech Post', 'Bloomberg', 'CTV News', 'AFP via Yahoo! News', 'TheStreet.com', 'Reuters Africa', 'abc7news.com', 'NBCNews.com', 'Forbes', 'The Punch', 'RTE News', 'Wall Street Journal', 'The Week Magazine', 'Dark Reading', 'Business Insider', 'Press TV', 'Game Informer', 'Public Knowledge Tech News and Comment (blog)', 'Windows Central', 'Benzinga', 'Business Insider', 'Digital Trends via Yahoo! News', 'gulfnews.com', 'Washington Post', 'Bloomberg', 'PR Newswire', 'The Independent', 'MarketPulse (blog)', 'Seeking Alpha', 'Newsweek', 'IANS India Private Limited via Yahoo! India News', 'Ottawa Citizen', 'Acton Institute (blog)', 'Engadget', 'Business Standard', 'RealClearPolitics', 'AFP via Yahoo! News', 'Bloomberg', 'Vox', 'Detroit Free Press', 'Jalopnik', 'New York Daily News', 'Bloomberg', 'CNBC', 'Design & Trend', 'Wall Street Pit', 'CBS News', 'Trend News Agency', 'USA TODAY', 'Reuters UK', 'PC World', 'Virginian-Pilot', 'Morning News USA', 'Hurriyet Daily News', 'euronews', 'Globalnews.ca', 'WGAL 8 Susquehanna Valley', 'Fortune', 'Voice of America', 'theTrumpet.com', 'MetalMiner', 'The Hill (blog)', 'Reuters', 'Go Certify', 'Al Jazeera via Yahoo Maktoob News', 'Associated Press via Yahoo! Singapore Sports', 'The Verge', nan, 'TechRadar', 'The Australian (subscription)', 'The Register', 'Reuters via Yahoo! Finance', 'CNN', 'USA TODAY', 'Metrotvnews.com', 'The Guardian', 'Phone Arena', 'Windows Central', 'TechCrunch', 'News On 6', 'Brazil-Arab News Agency (ANBA)', 'Daily Signal', 'ZDNet', 'International Business Times UK', 'MIS Asia', 'Accounting Today', 'Yahoo News', 'CNN', 'The Washington Times', 'Newsweek', 'Omaha World-Herald', 'HardwareZone', 'Manila Bulletin', 'Insurance Journal', 'FOX30 / CBS47 Jacksonville', 'GhanaWeb', 'The Hill (blog)', 'CNSNews.com', 'Nine O'Clock', 'Automotive News', 'Whitehouse.gov (press release)', 'ABC News', 'Ceylon Daily News', 'Web Host Industry Review', 'Vox', 'Wisconsin Public Radio News', 'Russia Beyond the Headlines', 'ABC12 Mid-Michigan', 'Foreign Policy', 'The White House (blog)', 'The Times of Israel', 'InformationWeek', 'Mother Jones', 'Reuters', 'Forbes', 'Beckley Register-Herald', 'Windows Central', 'Bangor Daily News', 'ValueWalk', 'Finextra (press release)', 'eWeek', 'MSPoweruser.com', 'VG247', 'Daily News & Analysis', 'The Rebel', 'Softpedia News', 'Washington Times', 'Associated Press via Yahoo! Philippines Sports', 'Entrpreneur', 'Ottawa Citizen', 'CounterPunch', 'AFP via Yahoo! News', 'ZDNet', 'WSET', 'Arutz Sheva', 'Gulf Times', 'Channelnomics EU (registration)', 'The Market Oracle', 'The Indian Express', 'The Verge', 'Sputnik International', 'MSPoweruser.com', 'The Hill (blog)', 'CBC.ca', 'Financial Times', '24/7 Wall St.', 'The Guardian', 'Al-Monitor', 'Reuters', 'Reuters via Yahoo! News', 'The Canadian Press via Yahoo Canada News', 'The Hindu', 'Huffington Post', 'AFP via Yahoo! News', 'Newsweek', 'Mashable', 'American Thinker', "Crain's Detroit Business", 'Ukraine Today', 'The Verge via Yahoo! News', 'CTV News', 'Financial Times', 'Reuters UK', 'EurActiv', 'GeekWire', 'InfoWorld', 'Morning News USA', 'ZDNet', 'Bloomberg via Yahoo! Finance', 'Economic Times', 'ABC Online', 'National Post', 'The Korea Herald', 'MSPoweruser.com', 'Newsy', 'Wall Street Journal', 'Telegraph.co.uk', 'People Magazine', 'The ', 'The Week Magazine', 'The New Indian Express', 'NBC NEWS', 'Atlanta Journal Constitution', 'Zacks via Yahoo! Finance', 'Geek', 'Whitehouse.gov (press release)', 'The Straits Times', 'Scoop.co.nz', 'Weekly Times Now', 'The Borneo Post', 'Vox', 'SeeNews (subscription)', 'Social Europe', 'Quartz', 'The Borneo Post', 'AAP via Yahoo!7 News', 'ITWeb', 'News24', 'Yahoo Finance', 'The Japan Times', '12news.com', 'Techworm', 'Whitehouse.gov (press release)', 'The Independent', 'Washington Post', 'Kuwait News Agency', 'Huffington Post', 'The Guardian', 'Ars Technica', 'CBS News', 'CNN Money', 'CCTV', 'TechSpot', 'International Business Times via Yahoo UK & Ireland News', 'CNN', 'The Muslim News', 'The Star, Kenya', 'Sioux Falls Argus Leader', 'The Slovak Spectator', 'Worcester Telegram', 'Palestine News Network', 'Rappler', 'The Muslim News', 'TASS', 'China Daily', 'Digital Trends', 'Business Insider', 'ABC News', 'Knowledge@Wharton', 'Chicago Tribune', 'Daily Beast', 'Yahoo Finance UK', 'PC World', 'WRAL.com', 'ABC News', 'Seattle Times', 'Wall Street Journal (blog)', 'KSL.com', 'Bloomberg', 'Fusion', 'Globalnews.ca', 'The Missoulian', 'Reuters via Yahoo! News', 'Kansas City Star', 'The Atlantic', 'BetaNews', 'The Sydney Morning Herald', 'Bloomberg', 'Associated Press via Yahoo! Finance', 'INFORUM', 'Mediaite', 'Art Newspaper', 'MarketWatch', 'Esquire.com', 'Times of India', 'ABC News', 'CNNMoney', 'Bloomberg', 'Xinhua', 'Channel 8 San Diego', 'The Hill', 'Lifesite', 'Milwaukee Journal Sentinel', 'Telegraph.co.uk', 'Express.co.uk', 'BBC News', 'Firstpost', 'Business Insider', 'StreetInsider.com', 'Geektime', 'Washington Times', 'The Coloradoan', 'Gulf News', 'Bloomberg via Yahoo UK & Ireland Finance', 'The Hill', 'ARNnet', 'WPTZ', 'The Sun', 'TheBlaze.com', 'AlterNet', 'Washington Post', 'WAVY-TV', 'CSO Online', 'Seattle Times', 'The Guardian', 'Business Standard', 'New York Post', 'AFP via Yahoo! News', 'Independent Online', 'U.S. News & World Report (blog)', 'Forbes', 'SiliconANGLE', 'Cherry Hill Courier Post', 'The Associated Press via Yahoo! Sports', 'InfoWorld', 'Firstpost', 'Associated Press via Yahoo! News', 'Manila Bulletin', 'NBCNews.com', 'San Antonio Express-News (subscription)', 'Business Insider', 'Mondoweiss', 'Minneapolis Star Tribune', 'Associated Press via Yahoo! Finance', 'International Business Times', 'The Guardian', 'Mondoweiss', 'Vogue.com', 'Business Insider', 'FOX Business', 'MarketWatch', 'The National', 'Wall Street Journal', 'Motley Fool', 'MSPoweruser.com', 'Politico', 'International Business Times via Yahoo UK & Ireland News', 'U-T San Diego', 'Express.co.uk', 'Reuters via Yahoo! Singapore News', 'Albany Times Union', 'Fox News', 'Arab News via Yahoo Maktoob News', 'The Bournemouth Daily Echo', 'Raw Story', 'The Straits Times', 'The Manila Times', 'Daily Caller', 'CNSNews.com', 'WAFA - Palestine News Agency', 'USA TODAY', 'WCPO', 'Game Informer', 'The Columbian', 'NEWS.com.au', 'CIO', 'New York Post', 'NDTV', 'Washington Free Beacon', 'CBC via Yahoo Canada News', 'cleveland.com', 'International Business Times via Yahoo UK & Ireland News', 'Business Standard', 'BDlive', 'CNNMoney', 'Irish Examiner', 'Western Journalism', 'The Providence Journal', 'Neowin', 'Bloomberg', 'Los Angeles Times', 'CBC.ca', 'CBC.ca', 'TASS', 'Chinapost', 'The Wall Street Journal', 'Arab News', 'Business Insider', 'PoliticusUSA', 'Business Insider via Yahoo! Finance', 'TIME', 'Rand Daily Mail', 'Dark Reading', 'ITV.com', 'BBC News', 'Reuters via Yahoo UK & Ireland News', 'India Infoline', 'The Providence Journal', 'YIBADA English', 'Sputnik International', 'Deutsche Welle', 'International Middle East Media Center', 'Arab News', 'New York Times', 'BetaNews', 'Ghacks Technology News', 'NewsFactor Network', 'Columbus Dispatch', 'Bloomberg via Yahoo! New Zealand Finance', 'GeekWire', 'Khaleej Times', 'NewsOK.com', 'ABC News', '3DPrint.com', 'U.S. News & World Report', 'Financial Times', 'Democracy Now!', 'InfoQ.com', 'FXStreet', 'Associated Press via Yahoo! News', 'FXStreet', 'Voice of America', 'Reuters', 'Huffington Post', 'Hindustan Times', 'International Business Times via Yahoo UK & Ireland News', 'Cycling Weekly', 'Daily Caller', 'The Guardian', 'Bloomberg', 'Business Insider via Yahoo! Finance India', 'The Hill (blog)', 'Las Vegas Sun', 'NJ.com', 'Digital Trends via Yahoo! Sports', 'MarketWatch', 'CBS News', 'The Hill (blog)', 'The McDowell News', 'The Scotsman', 'American Enterprise Institute', 'Business Insider', 'Tech Media Network (Tom's Guide) via Yahoo! News', 'Yahoo Finance', 'WAFA - Palestine News Agency', 'PBS NewsHour', 'Irish Times', 'Reuters via Yahoo! India News', 'NPR', 'The Next Web', 'APEX Media', 'Insurance Journal', 'NBCNews.com', 'The Globe and Mail', 'Reuters via Yahoo! News', 'Wareable', 'The ', 'Business Standard India', 'Motley Fool', 'Los Angeles Times', 'The Hill', 'Power Line (blog)', 'NPR', 'Engadget', 'azcentral.com', 'Associated Press via Yahoo! News', 'CBS News', 'New York Times', 'VentureBeat', 'ABC News', 'ThinkProgress', 'Wall Street Journal', 'PBS NewsHour', 'Profit Confidential', 'China.org.cn', 'Arutz Sheva', 'Financial Times', 'Globalnews.ca', 'SuperSite for Windows', 'Daily Beast', 'Associated Press via Yahoo! News', 'NBCNews.com', 'Lifehacker Australia', 'Breitbart News', 'Western Journalism', 'Telegraph.co.uk', 'Business Insider', 'Washington Post', 'New York Times', 'Independent Online', 'Financial Times', 'Jerusalem Post Israel News', 'Greek Reporter', 'Independent Online', 'ZDNet', 'CNBC', 'PCWorld', 'Alternative Information Center (AIC)', 'Washington Times', 'The Guardian', 'Metro', 'Media Matters for America', 'Bloomberg', 'Bloomberg via Yahoo! Finance', 'CNN', 'CBC.ca', 'Threatpost', 'The Inquisitr', 'The ', 'BGR India', 'Business Insider', 'The Intercept', 'Market Realist via Yahoo! Finance', 'StreetInsider.com', 'snopes.com', 'Business Insider via Yahoo Canada Finance', 'Neowin', 'BetaNews', 'Detroit Free Press', 'Fox News', 'New University', 'PoliticusUSA', 'For The Win', 'Bangkok Post', 'Bloomberg via Yahoo!7 Finance', 'MSNBC', 'Arizona Daily Star', 'The Atlantic', 'Motley Fool', 'Economic Times', 'Foreign Affairs', 'Reuters', 'Business Insider', 'CNN International', 'Bloomberg', 'International Business Times', 'Al-Bawaba', 'Daily Sun', 'WinBeta', 'IBN live', 'Reuters UK', 'Softpedia News', 'Center for Research on Globalization', 'Science Magazine', 'Haaretz', 'Mirror.co.uk', 'Reuters UK', 'Wall Street Journal', 'BBC News', 'SFGate', 'BetaNews', 'NBC NEWS', 'Daily Signal', 'Profit Confidential', 'Middle East Monitor', 'ABC News', 'Business Insider', 'KABC-TV', 'Washington Post', 'Benzinga', 'Daily Caller', 'TIME', 'Hot Air', 'The Straits Times', 'Haaretz', 'Hindu Business Line', 'Voice of America', 'Miami Herald', 'Washington Free Beacon', 'FOX 8 New Orleans', 'iamWire', 'just-style.com (subscription)', 'Al-Monitor', 'Motley Fool', 'CNBC', 'Associated Press via Yahoo! Finance', 'Association France Palestine Solidarit\x9d\x9d', 'The Seattle Times', 'The National', 'Coventry City FC', 'CNNMoney', 'Economic Times', 'Herald Sun', 'Palestine News Network', 'WZZM 13 Grand Rapids', 'Motley Fool', 'NBCNews.com', 'NDTV', 'South China Morning Post (subscription)', 'Politico', 'Yahoo Finance', 'KVUE.com', 'Huffington Post', 'Channel NewsAsia', 'NewsBusters (blog)', 'Los Angeles Times', 'The Hill', 'WinBeta', 'U.S. News & World Report', 'The Star-Ledger', 'Fayetteville Observer', 'NBC Bay Area', 'ABC News', 'San Antonio Express-News', 'TODAYonline', 'Breitbart News', 'The FADER', 'FXStreet', 'Al-Monitor', 'Wall Street Journal', 'Yahoo News', 'The News International', 'WinBeta', 'WJXT Jacksonville', 'Daily Caller', 'Reuters', 'Seeking Alpha', 'Business Insider', 'Market Watch', 'New York Times', 'CanadianBusiness.com', 'The Hill', 'BBC News', 'The Nation', 'FrontPage Magazine', 'The Hill', 'Daily Caller', 'AFP via Yahoo! News', 'Crux: Covering all things Catholic', 'Honolulu Star-Advertiser', 'ABC News', 'Pakistan Today', 'YIBADA English', 'Business Insider', 'Market Realist via Yahoo UK & Ireland Finance', 'ATTN', 'Wall Street Journal (blog)', 'The Star Online', 'CBS Dallas - Fort Worth', 'RTE News', 'Greater Baton Rouge Business Report', 'Sky News via Yahoo Canada News', 'CNN', 'Bloomberg', 'Stars and Stripes', 'Canada Free Press', 'WinBeta', 'New York Post', 'Los Angeles Times', 'Arab News', 'Press TV', 'IT PRO', 'Market Watch', 'Business Insider', 'Scotsman', 'Siouxland Matters', 'AFP via Yahoo! News', 'New York Times', 'Business Wire via Yahoo Canada Finance', 'Western Journalism', 'Foreign Policy (blog)', '9 to 5 Mac (press release)', 'gulfnews.com', 'Nasdaq', 'Minneapolis-St. Paul Star Tribune', 'MarketWatch', 'The Independent', 'International Business Times via Yahoo UK & Ireland News', 'Computerworld', 'Mississippi News Now', 'CNNMoney', 'New York Post', 'Kuwait News Agency', 'WinBeta', 'CBS News', 'The Guardian', 'The ', 'The Borneo Post', 'Daily Mail', 'CampaignLive', 'NBC New York', 'Forbes', 'Yahoo Finance', 'New York Times', 'A.V. Club (blog)', 'Military.com', 'WTOK', 'CNW Group via Yahoo! Finance', 'CNN', 'ITBusiness.ca', 'PJ Media (blog)', 'Redmondmag.com', 'Business Standard', 'Huffington Post', 'Reuters', 'AFP Relax News via Yahoo! News', 'PoliticusUSA', 'SkySports', 'Baltimore Sun', 'TIME', 'PCWorld', 'New York Times', 'BizPac Review', 'CNBC', 'Nasdaq', 'The Borneo Post', 'OilPrice.com', 'RenewEconomy', 'The Hill', 'The Independent', 'The Hill', 'PC World', 'Fox News', 'Daily Mail', 'Christian Science Monitor', 'Huffington Post', 'Daily Mirror', 'Washington Examiner', 'Associated Press via Yahoo! News', 'Breitbart News', 'The Huffington Post', 'Fox News Latino', 'CNNMoney', 'VentureBeat', 'Malay Mail Online', 'U.S. News & World Report', 'CTV News', 'Computerworld', 'American Spectator (blog)', 'NDTV', 'New York Times', 'Nasdaq', 'Business Insider', 'Nasdaq', 'Wall Street Journal (blog)', 'E&T magazine', 'The Indian Express', 'Daily Mail', 'Business Wire (press release)', 'Associated Press via Yahoo! News', 'KOAT Albuquerque', 'Salon', 'Reuters', 'TASS', 'New York Times', 'Computer World Australia', 'Reuters UK', 'Business Today', nan, 'Ghanaweb.com', 'The Sunday Times', 'Economic Times', 'Henderson Daily News', 'MetroNews Canada', 'NDTV', 'KABC-TV Los Angeles', 'Coventry Telegraph', 'Tech Times', 'Brandon Sun', 'Ventures Africa', 'MSPoweruser.com', 'ABC News', 'The Hill', 'The New American', 'TechRadar', 'Macleans.ca', 'Telegraph.co.uk', 'Los Angeles Times', 'Reuters India', 'TheStranger.com', 'Reuters', 'ForexLive', 'The Age', 'Chicago Tribune', 'Morning Star', 'Business Insider', 'The Weekly Standard (blog)', 'BT.com', 'Center for Research on Globalization', 'WND.com', 'The Inquisitr', 'ZDNet', 'Wall Street Journal (blog)', 'Bangkok Post', 'The Wall Street Journal', 'ABC News', 'Kitsap Sun', 'IRA Market Report', 'EMQ', 'Mediaite', 'Reuters', 'Daily Mail', 'Sky News via Yahoo UK & Ireland Finance', 'Bloomberg', 'Engadget', 'Phys.Org', 'NAIJ.COM', 'Washington Post', 'Economic Times', 'Hot Air', 'South China Morning Post', 'Center for Research on Globalization', 'Right Wing Watch', 'The Moscow Times (registration)', 'GeekWire', 'Bloomberg', 'FOX 12 Oregon', 'CBS News', 'Daily Star', 'The Verge', 'Michigan Radio', 'Associated Press via Yahoo UK & Ireland Finance', 'Politico', 'Bloomberg', 'NAIJ.COM', 'OregonLive.com', 'WinBeta', 'Al-Monitor', 'Middle East Monitor', 'Bloomberg', 'WCVB Boston', 'CTV.ca', 'Times of Oman', 'PolitiFact', 'Lifehacker Australia', 'Forbes', 'Bloomberg', 'The Bakersfield Californian', 'newsBTC', 'Politico', 'The Hill (blog)', 'Gawker', 'Forbes', 'Breitbart News', 'Thomson Reuters Foundation', 'Toronto Star', 'Belfast Telegraph', 'New York Times', 'Reuters via Yahoo!7 News', 'Esquire.com', 'Jerusalem Post Israel News', 'The Wall Street Journal', 'AFP News via Yahoo! Singapore News', 'MarketWatch', 'Daily Signal', 'Fortune', 'Huffington Post', 'The Washington Times', 'Fortune', 'Bloomberg via Yahoo! Finance', 'Business Insider via Yahoo! Finance', 'Livemint', 'Bloomberg', 'Socialist Alternative', 'Ghanaweb.com', 'AFP via Yahoo! News', 'BBC News', 'Power Line (blog)', 'Business Insider via Yahoo! Finance India', 'Reuters via Yahoo! Finance', 'Fortune', 'ITV.com', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'Techcrunch', 'Mondoweiss', 'ZDNet', 'The Canadian Press via Yahoo Canada News', 'The Guardian', 'Express.co.uk', 'Yahoo Finance UK', 'Business Insider via Yahoo! Finance', 'Economic Times', 'Wall Street Journal', 'NPR', 'The Christian Science Monitor', 'AllAfrica.com', 'International Business Times', 'National Review Online', 'Associated Press via Yahoo! Philippines News', "Investor's Business Daily", 'Reuters via Yahoo UK & Ireland News', 'Milwaukee Journal Sentinel', 'Reuters via Yahoo UK & Ireland News', 'Associated Press via Yahoo! News', 'gulfnews.com', 'Salon', 'Business Insider', 'Financial Times', 'New York Magazine', 'Reuters via Yahoo! Finance', 'Motley Fool', 'AFP via Yahoo! News', 'The Business Times Singapore', 'AppAdvice', 'Breitbart News', 'Stuff.co.nz', 'Engadget', 'PC World', 'Wall Street Journal (blog)', 'Reuters', 'KFDA-TV Amarillo', 'Neowin', 'AAP via Yahoo! New Zealand Finance', 'Reuters via Yahoo! Finance', 'The Guardian', 'International Business Times', 'PC Advisor', 'Wamda', 'ABC Online', 'Vanguard', 'MarketWatch via Yahoo! News', 'Jerusalem Post Israel News', 'Business Standard (press release) (registration) (blog)', 'CNET', 'Reuters via Yahoo! Finance', 'Minneapolis Star Tribune', 'Washington Post', 'Kyiv Post', 'The Atlantic', 'Arutz Sheva', 'WSBT-TV', 'gearburn', 'PC World', 'The Durango Herald', 'AFP via Yahoo! Finance', 'CNBC', 'The Hill (blog)', 'NPR', 'WWD', 'The Jewish Journal of Greater Los Angeles', 'Business Insider Australia', 'Al-Arabiya (blog)', 'Business Insider via Yahoo! Finance', 'Breitbart News', 'USA TODAY', 'Los Angeles Times', 'The Wall Street Journal', 'The ', 'PolitiFact', 'Chicago Tribune', 'Manila Bulletin', 'CNBC', 'The Motley Fool', 'Anadolu Agency', 'AFP via Yahoo! News', 'Manila Bulletin', 'Sky News', 'Masterstudies News (blog)', 'KSWO', 'Morning Star Online', 'VOA News', 'Bloomberg', 'Free Malaysia Today', 'Reuters Blogs (blog)', 'Jakarta Post', 'The Muslim News', 'ABC News', 'AFP via Yahoo! India News', 'TechTarget', 'Economic Times', 'euronews', 'Digital Trends via Yahoo! Sports', 'Times of India', 'AllAfrica.com', 'NBCNews.com', 'Financial Times', 'The ', 'Associated Press via Yahoo! Finance', 'The Guardian', 'National Review Online', 'Business Wire via Yahoo UK & Ireland Finance', 'The Register', 'Radio New Zealand', 'AFP via Yahoo! News', 'EUobserver', 'iDigitalTimes.com', 'EMQ', 'The London News Review', 'ABC News', 'The Wire', 'The Borneo Post', 'Reuters - UK Focus via Yahoo UK & Ireland Finance', 'Financial Times via Yahoo! New Zealand Finance', 'TheBlaze.com', 'Forbes', 'FederalNewsRadio.com', 'RealClearPolitics', 'InfoWorld', 'Economic Times', 'www.worldbulletin.net', 'The Indianapolis Star', 'The National', 'Softpedia News', 'Washington Post', 'Washington Examiner', 'WinBeta', 'Bloomberg View', 'CMSWire', 'The Times (subscription)', 'Washington Post', 'CNN', 'CNN.com', 'NAIJ.COM', 'New York Post', 'Express.co.uk', 'ABC News', 'The Desert Sun', 'Center for Research on Globalization', 'Lisbon Morning Journal', nan, 'The Tennessean', 'Alaska Public Radio Network', 'SiliconANGLE (blog)', 'The Independent', 'Nasdaq', 'TechCrunch', 'MSPoweruser.com', 'Middle East Monitor', 'Reuters via Yahoo! Sports', 'Deseret News', 'Glenwood Springs Post Independent', 'Express.co.uk', 'Nasdaq', 'Vanguard', 'TASS', 'WinBeta', 'AFP via Yahoo! News', 'BusinessDay', 'CNN', 'Fortune', 'LEDinside', 'Arutz Sheva', 'Associated Press via Yahoo! News', 'WUIS 91.9', 'TIME', 'Builder Magazine', 'CounterPunch', 'MediaPost', 'NPR', 'Outlook India', 'IGN', 'Scoop.co.nz (press release)', 'Valley News', 'Financial Times', 'Palestine Herald Press', 'WinBeta', 'CNNMoney', 'Hindu Business Line', 'AFP via Yahoo! News', 'The Register', 'TechCrunch', 'Newsweek', 'Market Realist via Yahoo! Finance', 'Herald Sun', 'Yahoo News', 'KLTV 7 Tyler', 'Georgia Today', 'Forbes', 'Business Insider', 'AfricaNews', 'Stuff.co.nz', 'Nasdaq', 'Reuters', 'Shanghai Daily (subscription)', 'Economic Times', 'This is Money', 'WPTZ The Champlain Valley', 'fox2now.com', 'Robdailynews', 'Lifehacker Australia', 'Plastics and Rubber Weekly', 'Reuters via Yahoo! Finance', 'International Middle East Media Center', 'WAFA - Palestine News Agency', 'SBS', 'Business Insider', 'Washington Examiner', 'WAFA - Palestine News Agency', 'AllAfrica.com', 'News 24 South Africa', 'U.S. News & World Report', 'CTV News', 'ITProPortal', 'Daily Caller', 'AL.com', 'Fortune', 'Bloomberg', 'Wall Street Journal Blogs', 'Belfast Telegraph', 'Reuters', 'Entrepreneur', 'Ars Technica', 'Yahoo7 News', 'PhoneWorld Magazine (press release) (blog)', 'Reuters', 'China Daily', 'Business Insider', 'Orlando Business Journal', 'WTOP', 'Softpedia News', 'Bloomberg', 'Windows Report', 'Times of India', 'CIO', 'Daily News & Analysis', 'Forbes', 'BGR India', 'Associated Press via Yahoo! News', 'Daiji World', 'Business Insider', 'Manila Bulletin', 'eWeek', 'AllAfrica.com', 'AFP Relax via Yahoo! Singapore News', 'Dawn', 'Haaretz', 'Atlanta Journal Constitution', 'CNN', 'New York Post', 'Fortune', 'Seeking Alpha', 'PC Magazine', 'ABC Online', 'Seattle Times', 'BetaNews', 'Holyrood.com', 'Washington Post', 'AllAfrica.com', 'The Register', 'The Rock Hill Herald', 'FIFA', 'WMPoweruser.com', 'Channel NewsAsia', 'Scroll.in', 'GameSpot', 'Daily News Egypt', 'The Straits Times', 'Windows Report', 'MIS Asia', 'Malta Independent Online', 'Queerty', 'Associated Press via Yahoo! News', 'The Forward', 'Bloomberg', 'Sputnik International', 'RTE.ie', ' ', 'Albany Business Review', 'Toronto Star', 'Fortune', 'GeekWire', 'Washington Times', 'Cinema Blend', 'Pulse.com.gh', 'The Christian Science Monitor', 'The Local.de', 'NPR', 'Newsday', 'Press Herald', 'IANS via Yahoo Maktoob News', 'Android Police', 'MarketWatch', 'ForexLive', 'Seeking Alpha', 'Business Insider', 'Washington Free Beacon', 'The Independent', 'Computerworld', 'CBS News', 'PR Newswire via Yahoo! Finance', 'The Guardian Nigeria (satire) (press release) (blog)', 'Marketwired via Yahoo! Finance', 'Los Angeles Times', 'Al Jazeera via Yahoo Maktoob News', 'Africanews (press release)', 'Bloomberg', 'ABC News', 'Global Trade Review (GTR)', 'AFP via Yahoo! News', 'Bristol Herald Courier (press release) (blog)', 'CNN', 'The Sun Herald', 'Bloomberg', 'Yahoo7 News', 'The Hill (blog)', 'ITProPortal', 'RealClearPolitics', 'Computerworld', 'Associated Press via Yahoo! News', 'ThinkProgress', 'CNBC', 'Windows Central', 'The Guardian', 'Chicago Tribune', 'Reuters via Yahoo! Finance', 'PC Magazine', 'AFP via Yahoo! News', 'CNW Group via Yahoo! Finance', 'Forbes', 'PoliticusUSA', 'FiveThirtyEight', 'CNN', 'Network World', 'GeekWire', 'Sky News via Yahoo UK & Ireland News', 'Associated Press via Yahoo! News', 'PCWorld', 'Co.Exist', 'IANS via Yahoo Maktoob News', 'CBC.ca', 'Newser', 'Bloomberg', 'Hindustan Times', 'Washington Times', 'Bay Area Indymedia', 'Marketwired via Yahoo! Finance', 'AFP via Yahoo! News', 'Chicago Tribune', 'The Japan Times', 'KGO-TV', 'cleveland.com', 'The Inquirer', 'Stuff.co.nz', 'Herald Scotland', 'The ', 'CNBC', 'Christian Post', 'Bloomberg', 'InDaily', 'CSO Online', 'The Inquisitr', 'The Canadian Press via Yahoo Canada Finance', 'Bloomberg', 'News.com.au Travel', 'New York Times', 'National Review Online', 'TASS', 'The Tennessean', 'Hindu Business Line', 'CNN', 'Huffington Post', 'Business Insider', 'ABC News', 'Reuters via Yahoo! Finance', 'Associated Press via Yahoo! Singapore Sports', 'Press TV', '9 to 5 Mac', 'Business Insider via Yahoo Maktoob News', 'Belfast Telegraph', 'New York Daily News', 'AFP via Yahoo! News', 'Computer World Australia', 'New York Times', 'Japan Today', 'Bloomberg', 'ComputerworldUK', 'Huffington Post Canada', 'The Grio', 'Taipei Times', 'MarketWatch', 'Press TV', 'Fox News', 'Associated Press via Yahoo! News', 'Investment Week', 'Alphr', 'Lynn News', 'The Business Times Singapore', 'Huffington Post', 'New York Post', 'Reuters', 'Thurrott.com (blog)', 'CTV Ottawa News', 'PR Newswire (press release)', 'Business Insider', 'U.S. News & World Report', 'AFP via Yahoo!7 Finance', 'ABC News', 'Motley Fool', 'The Guardian', 'Business Insider via Yahoo Canada Finance', 'Greenfield Daily Reporter', 'BBC News', 'Radio New Zealand', 'ITV News', 'MacNN', 'Vox', 'Bloomberg', 'Fox News', 'Los Angeles Times', 'Washington Post', 'TheChronicleHerald.ca', 'The Star Online', 'KTAL Shreveport', 'AllAfrica.com', 'expressandstar.com', 'NDTV', 'Democracy Now!', 'New York Times', 'Geek.com', 'GlobeNewswire via Yahoo! Finance', 'Sabah Daily Express', 'Forbes', 'The Charlotte Post', 'Tyler Morning Telegraph', 'MIS Asia', 'Metro Halifax', 'Market Watch', 'Daily Mail', 'Entrepreneur', 'Express.co.uk', 'Wall Street Journal', 'Sydney Morning Herald', 'PoliticusUSA', 'CNET', 'WND.com', 'Metrotvnews.com', 'Economic Times', 'The Times of Israel', 'Al-Bawaba', 'Market Realist via Yahoo! Finance', 'IT World', 'Channel NewsAsia', 'Daily Signal', 'Secrecy News (blog)', 'Business Today', 'Eu Business', 'Raw Story', 'Associated Press via Yahoo! News', 'Digital Trends via Yahoo! News', 'Buenos Aires Herald', 'Reuters via Yahoo! Finance', 'ExtremeTech', 'The Canadian Press via Yahoo Canada News', 'PC World', 'TechRepublic', 'Jerusalem Post Israel News', nan, 'Reuters via Yahoo Maktoob News', 'Economic Times', 'Business Insider UK', 'BDlive', 'MIS Asia', 'MarketWatch', 'Sputnik International', 'ThinkProgress', 'IANS via Yahoo Maktoob News', 'Irish Times', 'MSPoweruser.com', 'The Times of India', 'Forbes', 'CNNMoney', 'BDlive', 'Neowin', 'Sydney Morning Herald', 'MIS Asia', 'YIBADA English', 'Computer Business Review', 'Palestine News Network', 'U.S. News & World Report', 'WND.com', 'Reuters', 'ABC News', 'Business Insider', 'CNBC', 'Bloomberg via Yahoo! Finance', 'Fox News', 'Press TV', 'New York Times', 'Digital Trends', 'WAFA - Palestine News Agency', 'WHDH-TV', 'SuperSite for Windows', 'TechRitual', 'The Wall Street Journal', 'New Straits Times Online', 'Telegraph.co.uk', 'AFP via Yahoo! News', 'Express.co.uk', 'EU News', 'New York Times', 'The Hill', 'KLAS-TV', 'Reuters via Yahoo! Singapore News', 'Men's Journal Tech via Yahoo! News', 'Herald Scotland', 'Deutsche Welle', 'TheBlaze.com', 'Reuters via Yahoo! News', 'Nikkei Asian Review', '+972 Magazine', 'The Salt Lake Tribune', 'New York Times', 'The Hill', 'Financial Times', 'AFP via Yahoo! India News', 'The Economist', 'Reuters via Yahoo! News', 'Reuters via Yahoo! News', 'Reuters', 'The Hill (blog)', 'Huffington Post Canada', 'Forbes', 'Jordan Times', 'Palestine News Network', 'TIME', 'Wall Street Journal (blog)', 'Huffington Post', 'Voice of America', 'Huffington Post (blog)', 'Washington Free Beacon', 'ABC News', 'USA TODAY', 'Associated Press via Yahoo! Philippines News', 'Mother Jones', 'The Christian Science Monitor', 'BBC News', 'Slate Magazine (blog)', 'ABC News', 'Kyiv Post', 'Vox', 'Forbes', 'New Haven Register', 'Bloomberg', 'Reuters via Yahoo UK & Ireland News', 'BetaNews', 'KIII TV3', 'Voltaire Network', 'YourStory.com', 'Associated Press of Pakistan', 'Daily Mail', 'Motley Fool', 'Fox Business', 'The Christian Post', 'TheStreet.com', 'Daily Caller', 'NBCNews.com', 'Firstpost', 'U.S. News & World Report', 'Business Recorder', 'Palestine Herald Press', 'Channel News Asia', 'MSNBC', 'Canada.com', "Investor's Business Daily", 'USA TODAY', 'Bloomberg', 'The American Bazaar', 'U.S. News & World Report', 'Bangladesh News 24 hours', 'SuperSite for Windows', 'Deseret News', 'China Daily', 'Quartz', 'Aljazeera.com', 'CNBC', 'American Thinker (blog)', 'The Verge via Yahoo! News', 'Hindu Business Line', 'V3.co.uk', 'Newsmax', 'The Huffington Post UK', 'AllAfrica.com', 'Lawrence Berkeley National Laboratory', 'MarketWatch', 'Los Angeles Times', 'U.S. News & World Report', 'Bitbag', 'The Punch', 'JNS.org', 'USA TODAY', 'Reuters UK', 'International Business Times', 'WVVA Bluefield', 'ABC 7 Gulfshore News', 'Sydney Morning Herald', 'Neowin', 'Palestine News Network', 'Deseret News', 'Firstpost', 'USA TODAY', 'Ynetnews', 'Yahoo Singapore News', 'CBS News', 'Newsmax', 'Business Insider UK', 'Aljazeera.com', 'RT', 'The ', 'MSPoweruser.com', 'DailyO', 'The Atlantic', 'Redmondmag.com', 'Forbes', 'Financial Times', 'Inc.com', 'BusinessDay', 'eWeek', 'Budapest Business Journal', 'Associated Press via Yahoo! News', 'The Guardian', 'Express.co.uk', 'New York Times', 'Vanguard', 'Motley Fool', 'Techradar India', 'CBC.ca', 'CBS News', 'Chicago Tribune', 'Reuters Africa', 'Citizen TV (press release)', 'Geek.com', 'Fortune', 'Middle East Monitor', 'Bloomberg', 'WAFA - Palestine News Agency', 'VentureBeat', 'Financial Times', 'Reuters via Yahoo! Singapore News', 'Press TV', 'The Canadian Press via Yahoo Canada News', 'CNBC', 'The Chronicle Herald', 'Digital Journal', 'Wall Street Journal', 'BreakingNews.ie', 'SDTimes.com', 'newsBTC', 'The Guardian', 'CRN', 'Washington Post', 'Jewschool', 'Expert Reviews', 'Breitbart News', 'Reuters via Yahoo! News', 'Washington Post', 'Financial Express Bangladesh', 'Washington Post', 'Boxscore', 'Sputnik International', 'IANS via Yahoo Maktoob News', 'Bloomberg', 'RT', 'Redding Record Searchlight', 'ABC News', 'People Magazine', 'Windows Central', 'Associated Press via Yahoo UK & Ireland News', 'Right Wing Watch', 'CNN', 'NEWS.com.au', 'CNBC via Yahoo! Finance', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'WMPoweruser.com', 'BBC News', 'The Tico Times', 'The Huffington Post', 'Firstpost', 'Voice of America', 'StreetAuthority Network via Yahoo! Finance', 'Bloomberg via Yahoo!7 Finance', 'Network World', 'Softpedia News', 'Forbes', 'Slate Magazine (blog)', 'Times of Malta', 'Reuters UK', 'Gizmodo', 'U.S. News & World Report', 'Associated Press via Yahoo! News', 'The Hill (blog)', 'Forbes', 'Associated Press via Yahoo! News', 'Computerworld', 'Reuters', 'CBS Pittsburgh', 'The Inquirer', 'Omaha World-Herald', 'Arab News', 'Eurasia Review', 'Seattle Times', 'AdAge.com (blog)', 'NBCNews.com', 'Daily Mail', 'PC World', 'Wall Street Journal', 'Ukraine Today', 'International Business Times', 'Wall Street Journal (blog)', 'Daily Caller', 'Reuters via Yahoo! Finance', 'Bloomberg', 'Breitbart News', 'Swampland', 'NBCSports.com', 'Businessinsider India', 'Scoop.co.nz (press release)', 'Reuters via Yahoo! Finance', 'Wall Street Journal (blog)', 'Zacks via Yahoo! Finance', 'Bloomberg', 'The Drum', 'Business Insider', 'Motley Fool', 'Huffington Post', 'The Jewish Journal of Greater Los Angeles', 'TheStreet.com', 'Seattle Times', 'BBC News', 'BDlive', 'Arab News', 'International Herald Tribune', 'Washington Post', 'Financial Times', 'Los Angeles Times', 'New Zealand Herald', 'LeFaso.net', 'AFL-CIO (blog)', 'Business Wire via Yahoo! Finance', 'Inquirer', 'Us Weekly', 'Bend Bulletin', 'CNBC', 'TechnoBuffalo', 'USA TODAY', 'The Guardian', 'MSPoweruser.com', 'Irish Examiner', 'WinBeta', 'CNN', 'KALW', 'PC World', 'Financial Post', 'Al-Arabiya', 'ZDNet UK', 'Engadget', 'Gamasutra', 'RushLimbaugh.com', 'Nikkei Asian Review', 'Associated Press via Yahoo! News', 'ForexLive', 'Wall Street Journal', 'The Detroit News', 'The Hill', 'Breitbart News', "Barron's", 'Albuquerque Journal', 'WTOP', 'Inquirer', 'Salt Lake Tribune', 'Forbes', 'euronews', 'FOX 5 San Diego', 'Foreign Policy (blog)', 'Capital FM Kenya (press release) (blog)', 'CNBC', 'Hollywood Reporter', 'The Verge via Yahoo! News', 'Ventures Africa', 'The Verge via Yahoo Canada News', 'The Verge', 'Bharat Press', 'Forbes', 'PC World', 'Engadget', 'Softpedia News', 'Motley Fool', 'The Boston Globe', 'The ', 'Huffington Post', 'Reuters via Yahoo! News', 'TWCN Tech News (blog)', 'The Japan Times', 'Windows Central', 'DNA India', 'Channel News Asia', 'Huffington Post', 'Fortune', 'MSNBC', 'POLITICO Magazine', 'Business Green', 'Jezebel', 'Komando', 'Aberdeen Press and Journal', 'Jerusalem Post Israel News (blog)', 'Newsweek', 'NorthernLife.ca', 'Manufacturing.net', 'FOXSports.com', 'NDTV', 'The Nation.', 'CityNews', 'Inquirer', 'WFMJ Youngstown', 'Courier Mail', 'Bloomberg', 'Business Insider Australia', 'PoliticusUSA', 'groovyPost', 'CNBC', 'Mother Jones', 'VentureBeat', 'Gatestone Institute', 'Associated Press via Yahoo! News', 'The Star, Kenya', 'Insurance Journal', 'Roanoke Times', 'VentureBeat', 'TV Technology', 'The Denver Post', "Investor's Business Daily", 'The Globe and Mail', 'American Enterprise Institute', 'Forbes', 'Washington Post', 'Sydney Morning Herald', 'Forbes', 'FXStreet', 'The Washington Times', 'The Register', 'Huffington Post Canada', 'AppAdvice', 'The Hindu', 'Russia Beyond the Headlines', 'CKNW News Talk 980', 'The Verge', 'Economic Times', 'The Unofficial Apple Weblog', 'MSPoweruser.com', 'Profit Confidential', 'Deutsche Welle', 'AFP via Yahoo UK & Ireland News', 'Los Angeles Times', 'KRBD', 'New York Times', 'Economic Times', 'Stuff', 'POLITICO Magazine', 'The Seattle Times', 'Stuff.co.nz', 'Reuters via Yahoo! Finance', 'DNA India', 'Bernama', 'CBS Local', 'Digital Trends via Yahoo! Sports', 'ZDNet', 'Forbes', 'Bloomberg', 'CNBC', 'Chicago Daily Herald', 'The Inquisitr', 'Chicago Sun-Times', 'ARNnet', 'Wall Street Journal', 'The Nation', 'CNBC', 'Reuters via Yahoo UK & Ireland News', 'ARNnet', 'The National', 'Daily Mail', 'Opposing Views', 'Wall Street Journal', 'Jakarta Globe', 'The Irish Catholic', 'Irish Times', 'TheStreet.com', 'MIS Asia', 'U.S. News & World Report', 'Morocco World News', 'Hellenic Shipping News Worldwide', 'VentureBeat', 'Mediaite', 'Business Insider', 'CNNMoney', 'Variety via Yahoo! Finance', 'TheWrap', 'The Guardian', 'New York Post', 'Businessinsider India', 'Business Insider', 'CNN International', 'Daily News & Analysis', 'PCWorld', 'Wall Street Journal', 'Financial Times', 'Times of India', 'RT', 'CNBC', 'MIS Asia', 'InformationWeek', 'The Hill', 'Korea Times', 'Huffington Post', 'Jerusalem Post Israel News', 'Lisbon Morning Journal', 'Loudwire', 'Times of India (blog)', 'Electronic Beats (press release) (blog)', 'Irish Times', 'WN Philippines', 'Washington Times', 'Hindu Business Line', 'Reuters', 'Ars Technica', 'MSPoweruser.com', 'Stars and Stripes', 'Toward Freedom', 'Business Mirror', 'Daily Times', 'TIME', 'Bellaciao', 'Irish Independent', 'Christian Science Monitor', 'The Motley Fool', 'Videogamer.com', 'Daily Trust', 'CCM', 'Reuters India', 'KSLA-TV', 'Texarkana Gazette', 'CBC via Yahoo Canada News', 'The National', 'Reuters Blogs (blog)', 'Reuters', 'Attack of the Fanboy', 'Town Hall', 'CNN International', 'Bloomberg', 'FierceCIO', 'MIS Asia', 'KHOU', 'New York Post', 'Dayton Daily News', 'Fast Company', 'CIO', 'Newsmax', 'CNET', 'Telegraph.co.uk', 'Sky News Australia', 'Reuters', 'Neowin', 'Washington Post', 'Forbes', 'New York Times', 'Windows IT Pro', 'TASS', 'Global News', 'The Register', '19 Action News Cleveland', 'BusinessWorld Online Edition', 'Washington Post', 'KXXV News Channel 25', 'The Conversation AU', 'New York Daily News', 'MIS Asia', 'Phone Arena', 'iPolitics.ca (subscription)', 'The Verge via Yahoo! News', 'The Root', 'AFP via Yahoo! News', 'Kitsap Sun', 'The Hindu', 'GreenBiz', 'Reuters', 'TheBlaze.com', 'i24news', 'Reuters via Yahoo UK & Ireland Finance', 'PBS NewsHour', 'Nasdaq', 'UPI.com', 'YourStory.com', 'Seattle Times', 'Business Insider', 'The Week Magazine', 'San Jose Mercury News', 'Intifada Palestine', 'NDTV', 'HITC', 'Yahoo News Digest', 'Associated Press via Yahoo! Finance', 'PolitiFact', 'New York Times', 'AFP via Yahoo! News', 'ABC Online', 'Tasnim News Agency (press release)', 'CIO', 'NSEAVoice.com', '24/7 Wall St.', 'Windows Central', 'The Wall Street Journal via Yahoo! Finance India', 'PBS NewsHour', 'Vanguard', 'The Guardian', 'Washington Examiner', 'NDTV', 'Xinhua', 'Reuters Canada', 'AFP via Yahoo! Finance', 'SBS', 'PolitiFact', 'BDlive', 'Wall Street Journal (blog)', 'teleSUR English', 'PJ Media (blog)', 'Al-Monitor', 'Associated Press via Yahoo! Singapore News', 'PC World', 'Reuters via Yahoo! Finance', 'Jordan Times', 'Bloomberg', 'Bloomberg', 'Reuters via Yahoo! News', 'Reuters Canada', 'MarketWatch', 'UPI.com', 'Seeking Alpha', 'Scoop.co.nz', 'ABC News', 'The New Zealand Herald', 'NewsOK.com', 'CNBC', 'Daily Signal', 'The Predictive Analytics Times', 'RT', 'Breitbart News', 'Wall Street Journal', 'Fox News', 'The Japan Times', 'Connecticut Post', 'Channel NewsAsia', 'American Thinker', 'New York Times', 'MIS Asia', 'Stuff.co.nz', 'AFP via Yahoo! India News', 'Jerusalem Post Israel News', 'Chicago Tribune', 'Daily Caller', 'WGAL 8 Susquehanna Valley', 'Sacramento Business Journal', 'Business Insider', 'ABC News', 'IANS via Yahoo Maktoob News', 'Lawfare (blog)', 'Shanghai Daily (subscription)', 'Manila Standard Today', 'The Motley Fool', 'ZDNet', 'Wall Street Journal (blog)', 'Daily Caller', 'SFGate', 'The Inquisitr', 'Business Insider', 'PJ Media', 'Reuters', 'The Inquisitr', 'Foreign Policy In Focus', 'The New Indian Express', 'Network World', 'Washington Post', 'NPR', 'ThinkProgress', 'New Zimbabwe.com', 'Daily Beast', 'NBC4i.com', 'Bernama', 'Softpedia News', 'snopes.com', 'Reuters', 'Times LIVE', 'New York Times', 'KHOU', 'CNN', 'CNBC', 'The Hill (blog)', 'The Hill', 'Mediaite', 'Town Hall', 'Business Insider', 'Irish Times', 'City A.M.', 'Centre Daily Times', 'CBS 19 Tyler', 'BBC News', 'AFP via Yahoo! India News', 'GSMArena.com', 'Kotaku', 'Mirror.co.uk', 'The Hill', 'Channel NewsAsia', 'Russia Beyond the Headlines', 'The Indian Express', 'The Canadian Press via Yahoo Canada News', 'GeekWire', 'Livemint', 'Denver Post', 'The Guardian', "Barron's", 'HeraldNet', 'ARNnet', 'Winston-Salem Journal', 'MassLive.com', 'New York Post', 'WalesOnline', 'The Seattle Times', 'AsiaOne', 'ABC 7 Gulfshore News', 'RushLimbaugh.com', 'The Washington Times', 'Brandon Sun', 'The Hindu', 'Huffington Post', 'Financial Times', 'Reuters', 'Business Standard India', 'TheBlaze.com', 'Arab News', 'Channel News Asia', 'Digital Trends via Yahoo UK & Ireland News', nan, 'FOX13 Memphis', 'ELLE.com', 'Outlook India', 'Morning Journal News', 'The Wall Street Journal', 'Ars Technica', 'RT', 'Fox News', 'Calgary Herald', 'Casper Star-Tribune Online', 'National Turk English', 'Salon', 'The Washington Times', 'News On 6', 'Inquirer', 'Gamasutra', 'Cape Business News South Africa Business', 'Island Sun', 'Al-Arabiya', 'Times of India', 'Channel 8 San Diego', 'Meridian Star', 'WebMD', 'Economic Times', "Investor's Business Daily", 'Reuters Africa', 'The Australian', 'Haaretz', 'NDTV', 'Denver Post', 'Voice of America', 'New York Times', 'Yahoo News', 'WRAL.com', 'Livemint', 'The Canberra Times', 'Marketwired via Yahoo! Finance', 'eské noviny', 'AnandTech', 'Newsfirst', 'FXStreet', 'Anadolu Agency', 'FXStreet', 'The Atlantic', 'PBS NewsHour', 'UPROXX via Yahoo! News', 'Sputnik International', 'Peter Greenberg.com Travel News', 'Firstcoastnews.com', 'Reuters via Yahoo Maktoob News', 'Market Realist via Yahoo UK & Ireland Finance', 'The Independent', 'The Hill (blog)', 'Business Today', 'AFP via Yahoo! India News', 'Seattle Times', 'Al Jazeera via Yahoo UK & Ireland News', 'Breitbart News', 'The Hill (blog)', 'Colorado Springs Gazette', 'The Canadian Press via Yahoo Canada News', 'AllAfrica.com', 'Realty Today', 'WND.com', 'WGAL 8 Susquehanna Valley', 'The Express Tribune', 'The Guardian', 'CMSWire', 'Inquirer', 'UPI', 'IANS via Yahoo Maktoob News', 'BetaNews', 'Bloomberg via Yahoo! Finance', 'The Huffington Post', 'ABC News', 'WAPT Jackson', 'Al-Resalah', 'Galesburg Register-Mail', 'AgencySpy', 'The Japan Times', 'Seattle Times', 'Fox News', 'MarketWatch', 'Bloomberg', 'WND.com', 'Yahoo News', 'Digital Trends via Yahoo! Sports', 'CNN', 'WSOC Charlotte', 'Associated Press via Yahoo! Finance', 'Christian Science Monitor', 'The Edge', 'The Independent', 'CNBC', 'WAFA - Palestine News Agency', 'Seeking Alpha', 'Financial Market News', 'Wall Street Journal', 'Minnesota Public Radio News', 'InfoWorld', 'ANI via Yahoo! India News', 'Huffington Post', 'Washington Post', 'CNBC', 'Voice of America', 'Associated Press via Yahoo! News', 'Foreign Policy (blog)', 'dailytelegraph.com.au', 'Politico', 'Business Recorder', 'Bloomberg', 'The National Business Review', 'Thevillagessuntimes', 'Daily Signal', 'Interfax', 'Al Jazeera via Yahoo Maktoob News', 'PolitiFact', 'The Market Mogul', 'Al-Monitor', 'U.S. News & World Report', 'WinBeta', 'The Indian Express', 'Haaretz', 'TASS', 'Intifada Palestine', 'International Business Times, India Edition', 'Stuff.co.nz', 'The Times of India', 'Gotta Be Mobile', 'SiliconANGLE', 'International Middle East Media Center', 'Malaysiakini (subscription)', 'GQ Magazine', 'Business Wire via Yahoo! Finance', 'POLITICO Magazine', 'CBC.ca', 'Chronicle', 'The Mercury', 'Quartz', 'The Advertiser', 'Business Standard', 'International Middle East Media Center', 'Reuters', 'The Hill (blog)', 'DAWN.com', 'Fox News', 'Reuters via Yahoo! Finance', 'The Independent', 'KFDA-TV Amarillo', 'Yahoo7 News', 'The Age', 'Chron.com', 'Wall Street Journal (blog)', 'ABC News', 'Middle East Monitor', 'International Business Times via Yahoo UK & Ireland News', 'euronews', 'Business Insider via Yahoo! Finance', 'Forbes', 'HardwareZone via Yahoo! Singapore News', 'NOW Magazine', 'EMQ', 'The Exponent Telegram (press release) (registration)', 'Wall Street Journal', 'Yahoo Canada Finance - Insight (blog)', 'The New Statesman', 'ABC News', 'Wall Street Journal', 'WAFA - Palestine News Agency', 'Jerusalem Post Israel News', 'WAPT Jackson', 'Business Insider', 'Reuters via Yahoo! Finance', 'ABC News', 'The Hill (blog)', 'CNBC', 'TheStreet.com', 'Fox News Insider', 'New York Daily News', 'Marketwired via Yahoo UK & Ireland Finance', 'Chicago Tribune', 'Neowin', '+972 Magazine', 'Newsweek', 'Reuters', 'Daily Mail', 'Reuters via Yahoo! News', 'Computerworld', 'SiliconANGLE (blog)', 'Financial Times', 'NewsBusters (blog)', 'The Independent', 'The Root', 'NewsBusters (blog)', 'Economic Times', 'Business Wire', 'The Hill (blog)', 'Los Angeles Times', 'Associated Press via Yahoo! News', 'New Kerala', 'Daily Caller', 'Vanity Fair', 'Washington Post', 'CNBC via Yahoo! New Zealand Finance', 'Business Wire via Yahoo! Finance', 'AFP via Yahoo! News', 'Geeky Gadgets', 'Wall Street Journal', 'The Financial Express via Yahoo! Finance India', 'Telegraph via Yahoo UK & Ireland Finance', 'Fox News', 'Neowin', 'Daily Caller', 'Denver Post', 'Calgary Herald', 'Bloomberg via Yahoo! Finance', 'Economic Times', 'Platts', 'AmazinessNet (blog)', 'Techcrunch', 'MWC News', 'Windows Central', 'San Francisco Chronicle', 'Travel+Leisure', 'The Forward', 'Eyewitness News', 'Videogamer.com', 'WTKR Norfolk', 'Market Realist via Yahoo! Finance', 'Shanghai Daily (subscription)', 'Al-Bawaba', 'Stanford University News', 'Laptop Mag', 'AFP via Yahoo! India News', 'Arab News', 'Washington Times', 'OilPrice.com', 'Bidness ETC', 'New York Magazine', 'ABC News', 'Joplin Globe', 'CNN Money', 'Re/code', 'Daily Star', 'WGAL 8 Susquehanna Valley', 'CBC.ca', 'N4BB', 'Wall Street Journal (blog)', 'Right Wing Watch', 'NPR', 'ABC News', 'Power Line (blog)', 'euronews', 'The Copenhagen Post - Danish news in english', 'Hot Air', 'ValueWalk', 'Yahoo Finance', 'Sydney Morning Herald', 'The Indian Express via Yahoo! India News', 'NBC NEWS', 'TheStreet.com', 'Minneapolis Star Tribune', 'Wall Street Journal', 'Voice of America', 'The Hill (blog)', 'USA TODAY', 'The Guardian', 'Bloomberg', 'Business Insider via Yahoo! Finance', 'WTOP', 'CNN Money', 'Scotsman', 'NEWS.com.au', 'Florida Times-Union', 'Vanguard', 'The Atlantic', 'Daily Mail', 'eWeek', 'Raw Story', 'WAFA - Palestine News Agency', 'Tuoitrenews (press release)', 'Reuters UK', 'Daily Mail', 'WinBeta', 'Windows Report', 'Softpedia News', 'The Daily Buzz via Yahoo Canada News', 'CNBC', 'TheChronicleHerald.ca', 'The Business Times Singapore', 'Financial Times', 'ForexLive', 'Reuters UK', 'ABC News', 'Gizmodo', 'Reuters via Yahoo! Finance', 'Grist', 'Business 2 Community', 'Palestine News Network', 'Washington Post', 'Business Insider', 'The Guardian (blog)', 'The Korea Herald', 'Channel NewsAsia', 'Crowdfund Insider', 'MacroBusiness (blog)', 'Evenimentul Zilei', 'RT', 'eNCA', 'The Daily Star', 'Breitbart News', 'CNBC', 'OSNews', 'Bloomberg via Yahoo! Finance', 'PC World', 'Raw Story', 'Capital.gr (press release)', 'DNA India', 'Financial Times', 'Morningstar.com', 'Raw Story', 'The Guardian', 'Lifehacker', 'TASS', 'The Times (subscription)', 'Economic Times', 'Minneapolis Star Tribune', 'American Thinker (blog)', 'ZDNet', 'Irish Times', 'WinBeta', 'EverythingLubbock.com', 'FT.com (registration) (blog)', 'CBC.ca', 'Proactive Investors UK', 'CNN', 'TechCrunch', 'Huffington Post', 'GSMArena.com', 'Times of Malta', 'Motley Fool', 'The Hill', 'Fox News', 'BreakingNews.ie', 'CNBC', 'The Weekly Standard (blog)', 'Bloomberg', 'Hot Hardware', 'teleSUR English', 'Sputnik International', 'Georgetown University The Hoya', 'LocalNews8.com', 'Daily Signal', 'Bloomberg', 'ABC News via Yahoo! News', 'CBS News', 'Huffington Post', 'Morning Star', 'Bloomberg via Yahoo! Finance', 'Foreign Affairs', 'Reuters via Yahoo! News', 'azcentral.com', 'The Canadian Press via Yahoo Canada News', 'Wall Street Journal', 'EUobserver', 'Zimbabwe Independent', 'Columbia Daily Tribune', nan, 'Runway Girl Network', 'Daily Kos', 'U.S. News & World Report', 'KLTV 7 Tyler', 'WinBeta', 'Chicago Tribune', 'Bloomberg', 'Yahoo Music', nan, 'ZDNet UK', 'Nasdaq', 'New York Times', 'The Hill', 'Arutz Sheva', 'Computerworld New Zealand', 'DailyPost Nigeria', 'Daily Mail', 'Business Insider', 'FuelFix (blog)', 'BizNews', 'WGN-TV', 'VentureBeat', 'The Mercury', 'WinBeta', 'Scotsman', 'The Australian Financial Review', 'CNNMoney', 'Ahram Online', 'Daily Beast', 'CNET', 'The Seattle Times', 'Al Jazeera via Yahoo Maktoob News', 'Macleans.ca', 'ValueWalk', 'swissinfo.ch', 'TCC', 'Mic', 'Digital Trends via Yahoo! News', 'Nyasa Times', 'Washington Examiner', 'AFP via Yahoo! News', 'Gizmodo Australia', 'Manchester Evening News', 'Junior College', 'WTOC 11 Savannah', 'The Seattle Times', 'Jackson Free Press', 'VOA News', 'Yahoo Politics', 'The News International', 'Live Trading News', 'Business Insider', 'CNN', 'VentureBeat', 'Fortune', 'Hollywood Life', 'rediff.com', 'The Inquisitr', 'Truth-Out', 'Boston Herald', 'Bleeding Cool News', 'Pravda', 'Siliconrepublic.com', 'PBS NewsHour', "Barron's (blog)", 'Windows Central', 'Financial Times', 'Computer World Australia', 'expressandstar.com', 'The Huffington Post', 'AFP via Yahoo! News', 'FOX 12 Oregon', 'Telegraph.co.uk', 'Jerusalem Post Israel News', 'Bloomberg', 'Financial Express', 'Bay Area Indymedia', 'Salon', 'Reuters UK', 'The Indian Express', 'Associated Press via Yahoo!7 Finance', 'SuperSite for Windows', 'WTAE Pittsburgh', 'New York Daily News', 'Vermont Public Radio', 'The Atlantic', 'New York Daily News', 'The Hans India', 'Twitchy', 'Economic Times', 'The Globe and Mail', 'AFP via Yahoo! News', 'TechCrunch', 'ABC News', 'Reuters via Yahoo! News', 'Business Insider', 'Engadget', 'San Jose Mercury News', 'Phys.Org', 'AFP via Yahoo!7 Finance', 'PC Magazine', 'Hot Air', 'The Borneo Post', 'Reuters via Yahoo! News', 'Vox', 'New York Times', 'RTE News', 'euronews', 'Yahoo News', 'ArabianBusiness.com', 'The Christian Times', 'The Canadian Press via Yahoo Canada News', 'WAFA - Palestine News Agency', 'Times of India', 'New York Post', 'Justmeans (blog)', 'Washington Post', 'Ecumenical News', 'Whitehouse.gov (press release)', 'Softpedia News', 'Softpedia News', 'Philippine Star', 'Forbes', 'Reuters via Yahoo! News', 'In-Cyprus (press release) (subscription) (blog)', 'Telegraph.co.uk', 'SouthtownStar', 'CNN', 'Hot Air', 'Zacks via Yahoo! Finance', 'CNBC', 'Jerusalem Post Israel News', 'ABC News', 'The Hill', 'Viet Nam News', 'Washington Post', 'Business Insider via Yahoo! Finance', 'Channel NewsAsia', 'ZDNet', 'Wall Street Journal', 'KitGuru', 'Irish Independent', 'gulfnews.com', 'The Times of India', 'Windows Report', 'The Huffington Post', 'IceNews', 'The Guardian', 'Times of India', 'Ghanaweb.com', 'Jewish News', 'The Wall Street Journal', 'CNBC via Yahoo! Finance', 'TIME', 'The Manila Times', 'UNCTAD', 'Reuters UK', 'Reuters via Yahoo! Finance', 'Albany Times Union', 'The Christian Science Monitor', 'Washington Post', 'Associated Press via Yahoo! Finance', 'Chicago Tribune', 'Politico', 'The Next Web', 'International Business Times UK', 'TASS', 'AFP via Yahoo! News', 'Energy.gov (blog)', 'LifeZette', 'TIME', 'TorrentFreak', 'Morningstar', 'MarketWatch', 'Reuters', 'Reuters via Yahoo! News', 'Dawn', 'NBCNews.com', 'Citizen TV (press release)', 'StreetInsider.com', 'MyNewsLA.com', 'AFP via Yahoo! News', 'AllAfrica.com', 'Chronicle of Philanthropy (subscription)', 'Augusta Free Press', 'TechCrunch', 'Reuters via Yahoo! Singapore News', 'WJXT Jacksonville', 'The ', 'MarketWatch', 'The Robesonian', 'Financial Post', 'BetaNews', 'Sustainable Brands', 'The Straits Times', 'Washington Post', 'Hartford Courant', 'CNBC via Yahoo! Finance', 'The Union Leader', 'The Columbian', 'Gold Coast Bulletin', 'Huffington Post', 'Irish Times', 'China.org.cn', 'Forbes', 'USA TODAY', 'AFP via Yahoo! News', 'NPR', 'KXXV News Channel 25', 'NBCNews.com', 'WinBeta', 'Mirror.co.uk', 'SlashGear', 'Product Reviews', 'The Guardian', 'WQAD.com', 'Jordan Times', 'Lonoke News', 'Breitbart News', 'Chattanooga Times Free Press', 'Channel NewsAsia', 'South China Morning Post', 'Hindu Business Line', 'Money Marketing Online', 'WIBW', 'USA TODAY', 'Trade Arabia', 'Palestine Herald Press', 'CTV Calgary News', 'Reuters Middle East via Yahoo Maktoob News', 'Firstpost', 'Firstpost', 'RTT News', 'CNN', 'Reuters', 'USA TODAY', 'Market Realist via Yahoo! Finance', 'AFP via Yahoo! Finance', 'WAFA - Palestine News Agency', 'Inquirer.net', 'The Hill (blog)', 'NPR', 'The Hill', 'DNA India', 'Las Vegas Sun', 'The Hill (blog)', 'Politico', 'CNBC', 'Geek', 'InfoWorld', 'IBNLive', 'Dark Reading', 'ABC Online', 'The Globe and Mail', 'KLTV 7 Tyler', 'Mixmag', 'KBS WORLD Radio News', 'WinBeta', 'Palestine Herald Press', 'InfoWorld', 'Reuters via Yahoo! News', 'The Guardian', 'AFP via Yahoo! News', 'Bloomberg', 'Greenbot', 'ABC Online', 'Tech Times', 'Los Angeles Times', 'The Muslim News', 'Jakarta Post', 'AdAge.com', 'ZDNet', 'BigPond News', 'InformationWeek', 'New Zealand Herald', 'Newsweek', 'Channel NewsAsia', 'SBS', 'Wall Street Journal (blog)', 'AFP via Yahoo! Sports', 'AOL News', 'New York Times', 'MENAFN', 'ChannelLife NZ', 'Esquire.com', 'Asharq Alawsat', 'Financial Times', 'Neowin', 'Economic Times', 'Washington Post', 'AllAfrica.com', 'MSPoweruser.com', 'New Straits Times Online', 'Alphr', 'NJ.com', 'Madame Noire', 'Fox News', 'Leafly', 'WinBeta', 'Fortune', 'CCTV-America', 'Pittsburgh Post-Gazette', 'Bloomberg', 'BBC News', 'Globalnews.ca', 'Fortune', 'The Globe and Mail', 'ABC Online', 'ABC News', 'WEAU', 'Network World', 'Financial Times', 'Livemint', 'ABC News', 'Washington Times', 'Reuters Africa', 'AFP via Yahoo! News', 'FierceCIO', 'AFP via Yahoo!7 News', 'Los Angeles Times', 'Reuters', 'Observer', 'International Business Times UK', 'ARNnet', 'Business Green', 'New York Times', 'The Week Magazine', 'Digital Trends via Yahoo! News', 'CNBC', 'FXStreet', 'Benzinga via Yahoo! Finance', 'FoodProductionDaily.com', 'Russian Information Agency Novosti', 'Stars and Stripes', 'Market Realist', 'iNews880.com', 'The New Indian Express', 'Triple Pundit (registration) (blog)', 'Forbes', 'Washington Times', 'The Mass Media', 'Mirror.co.uk', 'CNN International', 'Intelligence Online (subscription)', 'GeekWire', 'Waste Management World', 'Daily Caller', 'AFP via Yahoo! News', 'Ghanaweb.com', 'Bloomberg via Yahoo! Finance', 'The Associated Press via Yahoo! Sports', 'The Record', 'Washington Post', 'WIFR Rockford', 'SlashGear', 'The Next Web', 'Middle East Monitor', 'Newstalk ZB', 'The Wall Street Journal', 'CMSWire', 'Bloomberg', 'MSPoweruser.com', 'The Wall Street Journal', 'The Guardian', 'WinBeta', 'Sydney Morning Herald', 'Tech2', 'TIME', 'The Next Web', 'Marketwired via Yahoo UK & Ireland Finance', 'AFP via Yahoo!7 Finance', 'The Chicago Monitor', 'Washington Post', 'Nikkei Asian Review', 'New York Times', 'Associated Press via Yahoo! Finance', 'CTV.ca', 'Forbes', 'Whitehouse.gov (press release)', 'Yahoo7 News', 'GeekWire', 'USA TODAY', 'RushLimbaugh.com', 'Clapway', 'Omaha World-Herald', 'The Wall Street Journal', 'FXStreet', 'Essence.com', 'SitePoint', 'Hindustan Times', 'Telegraph via Yahoo UK & Ireland Finance', 'Wall Street Journal', 'Investopedia', 'LifeZette', 'News3LV', 'The Hill (blog)', 'Forbes', 'Business Standard', 'In Homeland Security', 'AFP via Yahoo! News', 'Middle East Monitor', 'CTV News', 'gulfnews.com', 'CNN Money', 'Palestine News Network', 'Fortune', 'Reuters', 'Nasdaq', 'Economic Times', 'ninemsn 9Stories', 'Scoop.co.nz (press release)', 'The Connexion', 'Reuters UK', 'The New Zealand Herald', 'Dissident Voice', 'NPR', 'Business Insider via Yahoo! Finance', 'WAFA - Palestine News Agency', 'Forbes', 'Reuters UK', 'CNN', 'WSFA 12 Montgomery', 'Wall Street Journal', 'Sky News', 'Channel NewsAsia', "AJIB.fr L'actualit\x9d\x9d de l'Islam et des musulmans en France", 'The Register', 'Windows Central', 'FXStreet', 'GameZone', 'Fortune', 'Economic Times', 'Daily Signal', 'Intifada Palestine', 'ABC News', 'Merced Sun-Star', 'ZDNet', 'Seeking Alpha', 'Softpedia News', 'The Star', 'PR Newswire via Yahoo! Finance', 'AfricaNews', 'The Hill', 'AFP via Yahoo! News', 'Fox News', 'VentureBeat', 'Firstpost', 'Ghacks Technology News', 'The Star', 'The Guardian', 'WCTV', 'BDlive', 'The Star', 'Washington Examiner', 'Huffington Post', 'KTLA', 'Associated Press via Yahoo! News', 'Motley Fool', 'New York Times', 'TheBlaze.com', 'New York Times', 'The Chronicle Journal', 'Nikkei Asian Review', 'USA TODAY', 'Reuters', 'bnn.ca', 'VentureBeat', 'National Mirror', 'Knoxville News Sentinel', 'Telegraph.co.uk', 'Institutional Investor', 'Associated Press via Yahoo! News', 'TechRadar', 'Sputnik International', 'Fox News', 'Intifada Palestine', 'NL Times', 'Bloomberg', 'Engadget', 'Slate Magazine (blog)', 'The Times (subscription)', 'KRON4.com', 'Mashable', 'Press TV', 'CommonSpace', 'Edmonton Journal', 'Above the Law', 'Economic Times', 'Economic Times', 'Intifada Palestine', 'Tampa Bay Review', 'Jerusalem Post Israel News', 'Radio Cadena Agramonte', 'Huffington Post Canada', 'Tech2', 'Business Insider', 'New York Post', 'NBCNews.com', 'Washington Post', 'WAFA - Palestine News Agency', 'TheBlaze.com', 'Breitbart News', 'Reuters via Yahoo Canada News', 'Wausau Daily Herald', 'Science Daily', 'Wall Street Journal (blog)', 'Wall Street Journal', 'Game Revolution', 'International Middle East Media Center', 'MarketWatch', 'Washington Post', 'Softpedia News', 'Washington Examiner', 'NJ.com', 'AFP via Yahoo! India News', 'The Wall Street Journal', 'Business Mirror', 'Reuters UK', 'The Hindu', 'Windows Central', 'New York Times (blog)', 'Channel 8 San Diego', 'KUTV 2News', 'Reuters via Yahoo! Finance', "Oumma.com: point de vue musulman sur l'actualit\x9d\x9d", 'Computerworld', 'The Guardian', 'Town Hall', 'The Independent', 'Associated Press via Yahoo! News', 'The Sydney Morning Herald', 'The New Zealand Herald', 'TASS', 'Huffington Post', 'Reuters UK', 'Washington Post', 'CNN', 'Allentown Morning Call', 'Business Wire', 'Wall Street Journal', 'Forbes', 'Toward Freedom', 'The Daily Star', 'Daily Signal', 'Energy Matters', 'RadioFreeEurope/RadioLiberty', 'Seeking Alpha', 'Gizmodo', 'Breitbart News', 'groovyPost', 'Channel News Asia', 'Berkshire Eagle (subscription)', 'Deutsche Welle', 'Quincy Herald-Whig', 'New York Times', 'ZDNet UK', 'Politico', 'Financial Times', 'NPR', 'BBC News', 'ABC News', 'The Hill (blog)', 'The Straits Times', 'Financial Post', 'TODAYonline', 'MarketWatch', 'TCC', 'The National', 'OneNewsNow', 'GSMArena.com', 'Polygon', 'Business Insider', 'Daily Mail', 'Co.Design', 'USA TODAY', 'PC Magazine', "Investor's Business Daily", 'Marketwired (press release)', 'CloudWedge', 'N4BB', 'The Guardian Nigeria (satire) (press release) (blog)', 'Sify News', 'The Globe and Mail (subscription)', 'Middle East Eye', 'Plastics News', 'Breitbart News', 'ThinkProgress', 'Yorkton This Week', 'CNN', 'Manila Standard Today', 'NewsBusters (blog)', 'AAP via Yahoo!7 Finance', 'Computerworld', "Barron's (blog)", 'Business Standard', 'Daily Sabah', 'WGN TV Chicago', 'Q13 FOX Seattle', 'NPR', 'Huffington Post', 'Reuters', 'Digital Trends', 'The Daily Star', 'CNET via Yahoo! News', 'EurActiv', 'Miami Herald', 'Shanghai Daily (subscription)', 'CommonSpace', 'Irish Times', 'Independent Online', 'USA TODAY', 'OCRegister', 'TheBlaze.com', 'Wall Street Journal (blog)', 'TODAYonline', 'Shanghai Daily (subscription)', 'Al-Arabiya', 'Huffington Post', 'Quartz', 'Newschannel 6 Wichita Falls', 'Sputnik International', 'Economic Times', 'International Business Times', 'gulfnews.com', 'International Business Times via Yahoo UK & Ireland News', 'ProgrammableWeb', 'Network World', 'e27 via Yahoo! Singapore News', 'Investopedia', 'CNBC', "Barron's", 'The Atlantic', 'CIO', 'Daily Caller', 'WGAL 8 Susquehanna Valley', 'Newsmax', 'Inquirer', 'Nikkei Asian Review', 'CBS News', 'Gulf News via Yahoo Maktoob News', 'Sputnik International', 'Washington Free Beacon', 'The Hill (blog)', 'InfoWorld', 'NewsBusters (blog)', 'KTAL', 'Miami Herald', 'The Next Web', 'CBS Local', 'International Business Times', 'Good Morning America via Yahoo! News', 'Forbes', 'Business Standard', 'WND.com', 'WLWT-TV Cincinnati', 'Daily Caller', 'IBN live', 'The Globe and Mail', 'Bloomberg', 'New York Post', 'NPR', 'The Nation', 'ABC News', 'Reuters', 'Myrtle Beach Sun News', 'Washington Times', 'AFP via Yahoo! News', 'Nasdaq', "Investor's Business Daily", 'Western Journalism', 'NBCNews.com', 'InformationWeek', 'Calgary Herald', 'AFP via Yahoo! India News', 'Stuff.co.nz', 'Redmondmag.com', 'Climate Home', 'BBC News', 'Jewish Telegraphic Agency', 'ABC News', 'Quartz', 'Boston Herald', 'CBS 8 San Diego', 'Cebu Tech Blogger', 'Cellular News', 'Associated Press via Yahoo! India News', 'AFP via Yahoo Maktoob News', 'Economic Times', 'Inquirer', 'Economic Times', 'Catch News', 'MIS Asia', 'Opposing Views', 'Reuters via Yahoo! Sports', 'Jakarta Post', 'HUH.', 'Nasdaq', 'Irish Examiner', 'Los Angeles Times', 'New York Daily News', 'Yeshiva World News', 'RushLimbaugh.com', 'The Hill (blog)', 'Channel NewsAsia', 'New York Post', 'South China Morning Post (subscription)', 'Neowin', 'GhanaWeb', 'WJXT Jacksonville', 'Oilprice.com via Yahoo! Finance', 'TheBlaze.com', 'Intifada Palestine', 'The Fresno Bee', 'Daily Sabah', 'Winnipeg Free Press', 'The Verge', 'The Federalist', 'The Week Magazine', 'teleSUR English', 'Express.co.uk', 'TechCrunch', 'Windows IT Pro', 'Chron.com', 'Breitbart News', 'gulfnews.com', 'New York Times', 'Sputnik International', 'TASS', 'CBS News', 'U.S. News & World Report', 'VentureBeat', 'Reuters', nan, 'International Middle East Media Center', 'The Nation', 'ABC News', 'Aljazeera.com', 'Associated Press via Yahoo! Finance', 'The Globe and Mail', 'New Zealand Herald', 'Fort Worth Star Telegram', 'euronews', 'Peeblesshire News', 'Sky News via Yahoo UK & Ireland News', 'Mediaite', '12 News Phoenix', 'Bernama', 'Huffington Post', 'Santa Fe New Mexican', 'The Indian Express via Yahoo! India News', 'American Enterprise Institute', 'Al-Arabiya', 'eWeek', 'The Verge', 'BGR News via Yahoo! News', 'The Christian Post', 'RTE.ie', "Investor's Business Daily", 'Here And Now', 'The London News Review', 'The Hill (blog)', 'The Washington Times', 'Scoop.co.nz', 'Economic Times', 'Independent Online', 'gulfnews.com', 'Palestine Herald Press', 'Columbus Dispatch', 'The Straits Times', "Investor's Business Daily", 'Bloomberg', 'The Wall Street Journal', 'Daily Mail', 'The Herald', 'Tech Times', 'IANS via Yahoo Maktoob News', 'The Nation', 'Fox News', 'Politico', 'TechTarget', 'info komputer', 'CNBC', 'GeekWire', 'Reason (blog)', 'Power Line (blog)', 'InvestCorrectly', 'Chicago Tribune', 'Slate Magazine (blog)', 'Recode', 'Economic Times', 'Business Insider via Yahoo Maktoob News', 'FOX 12 Oregon', 'Seeking Alpha', 'Daiji World', 'Sacramento Bee', 'Vocativ', 'American Thinker', 'The Inquisitr', 'Tyler Morning Telegraph', 'Sarasota Herald-Tribune', 'YourStory.com', 'Shanghai Daily (subscription)', 'Digital Trends', 'International Business Times via Yahoo UK & Ireland News', 'AllAfrica.com', 'WOAI.com', 'Nasdaq', 'TIME', 'CNBC', 'Seeking Alpha', 'AFP via Yahoo! New Zealand News', 'Independent Online', 'The Hill', 'Above the Law', 'Hellenic Shipping News Worldwide', 'Marketing Land', 'WND.com', 'Wakey Wakey News', 'International Middle East Media Center', 'Designboom (blog)', 'AAP via Yahoo! New Zealand News', 'FactCheck.org', 'myfox8.com', 'Jerusalem Post Israel News', 'China Daily', 'Bloomberg', 'Fox Business', 'The Electronic Intifada (blog)', 'Newsday', 'Us Weekly', 'World Bank Group', 'International Business Times via Yahoo UK & Ireland News', 'Business Insider', 'TechnoBuffalo', 'CNBC', 'Eyewitness News', 'International Business Times', 'WinBeta', 'Business Insider via Yahoo! Finance', 'ABC News', 'CBC.ca', 'Bloomberg', 'Zacks via Yahoo! Finance', 'Digital Trends', 'WMUR Manchester', 'International Business Times', 'News West 9 Midland', 'SiliconANGLE', 'WPVI-TV', 'WAFA - Palestine News Agency', 'Mirror.co.uk', 'ABC News', 'Bloomberg', 'OCRegister', 'Quad City Times', 'Computerworld', 'The Verge via Yahoo! News', 'The Sydney Morning Herald', 'Politico', 'WGAL 8 Susquehanna Valley', 'CNBC', 'USA TODAY', 'Reuters via Yahoo! News', 'Telegraph via Yahoo UK & Ireland Finance', 'NBCNews.com', 'ExtremeTech', 'The Guardian Nigeria (satire) (press release) (blog)', 'The Register', 'Associated Press via Yahoo! News', 'Baltimore Business Journal (blog)', 'Breitbart News', 'Al-Bawaba', 'Intifada Palestine', 'Shanghai Daily (subscription)', 'ABC News', 'USA TODAY', 'Foreign Policy (blog)', 'CBC via Yahoo Canada News', 'BreakingNews.ie', 'CBS News', 'Reuters via Yahoo! Philippines News', 'The Hill', 'The Palm Beach Post', 'Forbes', 'The Independent', 'The Canadian Press via Yahoo Canada Finance', 'Palestine Herald Press', 'Reuters', 'The Wire', 'Associated Press via Yahoo! News', 'Western Journalism', 'Buffalo News', 'Fox News', 'CBS News', 'The Inquirer', 'BBC News', 'The Canadian Press via Yahoo Canada News', 'Edmonton Journal', 'ABC News', 'PC World', 'Dallas Morning News', 'PC World', 'Ottawa Sun', 'KnowTechie (blog)', 'Drexel University The Triangle Online', 'Reason (blog)', 'Chicago Tribune', 'Martins Ferry Times Leader', 'MSPoweruser.com', 'U.S. News & World Report', 'Computer World Australia', 'Reuters via Yahoo! News', 'NPR', 'Phone Arena', 'Reuters via Yahoo! News', 'Fox News', 'Irish Independent', 'Bloomberg', 'Wall Street Journal', 'Haaretz', 'Deutsche Welle', 'U.S. News & World Report', 'Spectator.co.uk (blog)', 'Reuters via Yahoo! Finance', 'Worthing Herald', 'Apple Insider', 'Irish Examiner', 'Irish Times', 'The Register', 'MSPoweruser.com', 'Daily Post Nigeria', 'The Hill (blog)', 'Christian Broadcasting Network', 'International Business Times UK', nan, 'CNBC', 'AFP via Yahoo! India News', 'National Post', 'Deadline', 'The Korea Herald', 'Committee for Accuracy in Middle East Reporting in America (blog)', 'Press TV', 'The Hill', 'Jobs & Hire', 'TechCrunch', 'Softpedia News', 'Toledo News Now', 'The Washington Times', 'Business Insider via Yahoo! Finance', 'CNN', 'TheStreet.com', 'The Canadian Press via Yahoo Canada Finance', 'NCR-Iran.org', 'Business Insider', 'Bloomberg', 'Motley Fool', 'MENAFN', 'The Record', 'Christian Science Monitor via Yahoo Canada News', 'Politico', 'Truth-Out', 'CRN', 'Committee for Accuracy in Middle East Reporting in America', 'Express.co.uk', 'Al Huffington Post', 'Black Enterprise', 'gulfnews.com', 'Breitbart News', 'ValueWalk', 'The Wall Street Journal', 'Business Insider Australia', 'Business Insider', 'Washington Times', 'Business Wire via Yahoo! Finance', 'Reuters via Yahoo! Finance', 'Toronto Sun', 'Palestine News Network', 'The Canadian Press via Yahoo Canada Finance', 'Digital Trends via Yahoo! Sports', 'NBCNews.com', 'Wall Street Journal', 'MacroBusiness (blog)', 'AgoraVox', 'Investorplace.com', 'Bearing Arms', 'BGR India', 'The San Diego Union-Tribune', 'Kiama Independent', 'EurActiv', '9 to 5 Mac', 'Sin Chew Jit Poh', 'Voice of America', "Investor's Business Daily", 'StreetInsider.com', "Investor's Business Daily", 'AFP via Yahoo! Finance', 'The Christian Science Monitor', 'Defense One', 'Android Authority (blog)', 'ABC Online', 'Reuters via Yahoo! News', 'www.worldbulletin.net', 'WLS-TV', 'Mediaite', 'Middle East Monitor', 'GlobeNewswire (press release)', 'News.Az', 'Bloomberg View', 'iProgrammer', 'The Conversation AU', 'Softpedia News', 'Center for Research on Globalization', 'China Daily', 'Red Deer Advocate', 'WinBeta', 'Huffington Post Canada', 'Project Syndicate', 'Daily Beast', 'PC World', 'Vanguard', 'Business Green (blog)', 'Observer', 'Sputnik International', 'Irish Examiner', 'The Bottom Line', 'Washington Post', 'USgamer (satire) (registration) (blog)', 'The Guardian', 'Huffington Post', 'CBS News', 'Santa Clarita Valley Signal', 'TIME', 'RushLimbaugh.com', 'Daily Sabah', 'Voice of America', 'NPR', 'Medical Daily', 'PC World', 'Scroll.in', 'The Hill (blog)', 'CNN', 'The Hill', 'ABC News', 'FRANCE 24', 'TheBlaze.com', 'WIS News 10 Columbia', 'South African Broadcasting Corporation', 'Venues Today', 'Mail & Guardian Online', 'BBC News', 'Middle East Confidential', 'Seeking Alpha', 'www.worldbulletin.net', 'Business Wire (press release)', 'The Hill', 'Business Insider', 'The National', 'DunyaNews Pakistan', 'Western Journalism', 'KSL.com', 'Times of India', 'Bloomberg', 'Breitbart News', 'PJ Media', 'Christian Science Monitor', 'Shanghai Daily (subscription)', 'Seattle Times', 'Deutsche Welle', 'ABC News', 'CNBC via Yahoo! Finance', 'Power Line (blog)', 'Ars Technica', 'In These Times', 'CNBCAfrica.com', 'Yahoo! Maktoob News', 'Trade Arabia', 'Yahoo News', 'Channel News Asia', 'BDlive', 'SBS', 'MSDynamicsWorld.com', 'Sydney Morning Herald', 'Guns.com', 'WKRG News 5 Mobile', 'The Hill', 'Wall Street Journal', 'The Zimbabwe Standard', 'USA TODAY', 'Breitbart News', 'Twitchy', 'PC World', 'Daily News & Analysis', 'The Republic', 'The Scotsman', 'IANS via Yahoo Maktoob News', 'Business Insider', 'Press TV', 'IJ Review', 'BDlive', 'ARC', 'Wall Street Journal', 'Business Wire via Yahoo! Finance', 'Hospitality Net', 'International Business Times, India Edition', 'CNET', 'TechnoBuffalo', 'Bloomberg', 'Ghanaweb.com', 'TheBlaze.com', 'Chicago Tribune', 'Huffington Post', 'Northern Star', 'TheStreet.com', 'Bobsguide (press release)', 'AFP via Yahoo! India News', 'Waynesville Daily Guide', 'The Week Magazine', 'The Guardian', 'The Hill', 'Breitbart News', 'CNN Money', 'Breitbart News', 'WinBeta', 'The Canadian Press via Yahoo Canada News', 'CTV News', 'PR Newswire (press release)', 'Phone Arena', 'Albuquerque Journal', 'Economic Times', 'IGN', '13newsnow.com', 'Haaretz', 'Business Insider via Yahoo! Finance', 'New York Times', 'Yahoo Politics', 'SPAMfighter News (press release)', 'Washington Post', 'Business Insider Nordic', 'The Daily Cougar', 'Business Wire (press release)', 'Washington Times', 'Small Business Trends', 'Mondoweiss', 'The Guardian', 'USA TODAY', 'Tech Times', 'Commentary Magazine', 'Inverse', 'Luxury Daily', 'The Federalist', 'USA TODAY', 'Digital Trends via Yahoo! News', 'CRN - UK', 'The Weekly Standard (blog)', 'Daily Caller', 'Associated Press via Yahoo! Finance', 'CAPA - Centre for Aviation', 'WAFA - Palestine News Agency', 'Clapway', 'CNET', 'The Hill', 'Bloomberg', 'AllAfrica.com', 'PR Newswire via Yahoo! Finance', 'Benzinga', 'Huffington Post', 'The Washington Times', 'Firstpost', 'euronews', 'CNN International', 'DNA India', 'Cebu Daily News', 'AllAfrica.com', 'TPM', 'Bloomberg', 'Realty Today', 'GeekWire', 'International Business Times UK', 'Power Line (blog)', 'PC Magazine', 'TheStreet.com', 'TASS', 'Algemeiner', 'Financial Times', 'Reuters via Yahoo! Singapore News', 'Milli Gazette', 'The Voice Herald (blog)', 'Bloomberg', 'TMZ.com', 'New Straits Times Online', 'Rappler', 'TPM', 'Contra Costa Times', 'TechnoBuffalo', 'Daily Californian', 'Washington Examiner', 'Yahoo News UK', 'Windows Report', 'Qantara.de', 'Yahoo Finance', 'Bloomberg', 'NPR', 'The Guardian Nigeria (satire) (press release) (blog)', 'GeekWire', 'PoliticusUSA', nan, 'Sky News Australia', 'Computerworld', 'AFP via Yahoo! India News', 'Mother Jones', 'Vulture', 'The Canadian Press via Yahoo Canada News', 'Daily Caller', 'Bloomberg', 'San Jose Mercury News', 'Wall Street Journal (blog)', 'Economic Times', 'CNBC', 'Ahlul Bayt News Agency (press release)', 'The Week Magazine', 'Washington Post', 'New Kerala', 'WMUR Manchester', 'Fox News', 'Reuters UK', 'The Australian Financial Review', 'Us Weekly', 'BruDirect.com', 'PanARMENIAN.Net', 'Newsmax', 'SouthCoastToday.com', 'WXII-TV Winston-Salem', 'The Indian Express', 'USA TODAY', 'The Wall Street Journal', 'Khaleej Times', 'The Guardian', 'Ars Technica', 'Forbes', 'The Hill', 'Eyewitness News', 'FiveThirtyEight', 'Egypt SIS (press release)', 'WAFA - Palestine News Agency', 'The Irish Times', 'AOL News', 'CBS News', 'Shanghai Daily (subscription)', 'TechRepublic', 'Austin Chronicle', 'euronews', 'Vox', 'WinBeta', 'The Brussels Times', 'Benzinga', 'Bloomberg', 'Economic Times', 'FierceTelecom', 'Huffington Post', 'American Thinker', 'Daily Caller', 'Los Angeles Times', 'ABC News', 'BetaNews', 'Bloomberg', 'Business Insider', 'Fox17', 'Financial Times', 'Business Recorder', 'EdSurge', 'Los Angeles Daily News', 'The Age', 'Bernama', 'Variety', 'Nasdaq', 'Town Hall', 'Kuwait Times', 'Gizmodo', 'The Guardian', 'The San Diego Union-Tribune', 'TIME', 'Washington Post', 'The Vista Voice', 'Daily Caller', 'PBS NewsHour', 'Business Green', 'The Guardian', 'CNN', 'Vox', 'Bloomberg', 'Jackson Clarion Ledger', 'CBS News', 'Quartz', 'KSLA-TV', 'The Herald News', 'Voice of America', 'The Canadian Press via Yahoo Canada News', nan, 'CNN', 'The Canadian Press via Yahoo Canada News', 'The Moscow Times (registration)', 'Montana Standard', 'Tech Insider (blog)', 'Wall Street Journal', 'The Mercury', 'Quincy Herald-Whig', 'ABC News', 'Pittsburgh Post-Gazette', 'AFP via Yahoo! India News', 'GMA News Online', 'The Muslim News', 'Daily Times', 'New York Post', 'Asahi Shimbun', 'TheBlaze.com', 'CNN', 'CBC.ca', 'Kennebec Journal & Morning Sentinel', 'New Republic', 'New Vision', 'Breitbart News', 'groovyPost', 'Al Jazeera America', 'Esquire.com', 'Wall Street Journal', 'Reuters via Yahoo Maktoob News', 'Washington Times', 'CPI Financial', 'Politico', 'New York Magazine', 'EMQ', 'WAFA - Palestine News Agency', 'RTÉ News', 'The Times (subscription)', 'Express.co.uk', 'The Verge', 'AFP via Yahoo!7 Finance', 'Independent Online', 'Belfast Telegraph', 'The Conversation UK', 'FG Insight', 'The Globalist', 'Carbon Brief', 'ABC News', 'PC World', 'Wall Street Journal', 'New York Daily News', 'Daily Mail', 'AFP via Yahoo! News', 'Progress.org (blog)', 'The Guardian', 'Neowin', 'WinBeta', 'The Grio', 'The Province', 'The Nonprofit Quarterly (blog)', 'Fox News', 'Stock Transcript', 'Fox News', 'Reuters via Yahoo! News', 'U.S. News & World Report', 'Quad City Times', 'IT PRO', 'Financial Times', 'Politico', 'China Daily', 'Associated Press via Yahoo! News', 'International Solidarity Movement', 'PoliticusUSA', 'The National Interest Online', 'Networks Asia', 'Toronto Star', 'Huffington Post', 'CNNMoney', 'Portland Business Journal (blog)', 'Reuters', 'Christian Science Monitor', 'AFP via Yahoo UK & Ireland News', 'New York Post', 'Tech Times', 'TMZ.com', 'Nasdaq', 'The Sydney Morning Herald', 'Business Wire via Yahoo Canada Finance', 'Bloomberg', 'The Straits Times', 'Chicago Tribune', 'Android Central', 'Vanguard', 'Sputnik International', 'The Economist (blog)', 'Reuters', 'CBC.ca', 'Reuters via Yahoo! News', 'WinBeta', 'Fox Business', 'AFP via Yahoo! India News', 'Irish Times', 'International Business Times UK', 'PC Magazine', 'Associated Press via Yahoo!7 Finance', 'Aviation Week', 'Reuters via Yahoo! News', 'CNN Money', 'ABC News', 'Western Journalism', 'Times of India', 'ABC News', 'Windows Central', 'Softpedia News', 'AsiaOne', 'FRANCE 24', 'TIME', 'WinBeta', 'FXStreet', 'PR Newswire (press release)', 'MSPoweruser.com', 'Bloomberg', 'Novinite', 'WHO-TV 13 Des Moines', 'The Intercept', 'Thanh Nien Daily', 'The Daily Star', 'StepFeed', 'AfricaNews', 'CNET via Yahoo! News', 'NDTV', 'BET (blog)', 'The Business Times Singapore', 'BBC News', 'Palm Beach Daily News', 'CNBC', 'Wall Street Journal', 'Gizmodo', 'Express.co.uk', 'The Korea Herald', 'Los Angeles Times', 'Denver Post', 'ABC News', 'WinBeta', 'Variety via Yahoo! Finance', 'BBC News', 'Quartz', 'KTAR.com', 'International Federation of Red Cross and Red Crescent Societies', 'Reuters via Yahoo! News', 'BusinessBecause', 'Jezebel', 'Los Angeles Times', 'CNN Money', 'Today.com', 'TASS', 'USA TODAY', 'Economic Times', 'TIME', 'Lincolnshire Echo', 'MENAFN', 'CNN', 'PYMNTS.com', 'KABC-TV', 'Washington Post', 'Channel 8 San Diego', 'The Fresno Bee', 'Times of India (blog)', 'Reuters', 'Huffington Post', 'TODAYonline', 'V3.co.uk', 'Firstpost', 'Wall Street Journal', 'Al-Monitor', 'CBC.ca', 'Business Insider UK Finance via Yahoo UK & Ireland Finance', 'Business Insider UK', 'IANS via Yahoo Maktoob News', 'New York Times', 'Oakville Beaver', 'WGN-TV', 'Washington Free Beacon', 'Channel NewsAsia', 'WGAL 8 Susquehanna Valley', 'Profit Confidential', 'China.org.cn', 'Channel NewsAsia', 'WCCFtech', 'Malaysian Digest', 'Bloomberg', 'Tech Times', 'Shanghai Daily (subscription)', 'India Today', 'InformationWeek', 'International Middle East Media Center', 'NPR', 'euronews', 'People Magazine', 'The Indian Express', 'Scroll.in', 'Times of India', 'Los Angeles Times', 'Billings Gazette', 'WinBeta', 'MarketWatch (blog)', 'The Guardian', 'Yahoo News', 'IT World Canada (blog)', 'Deseret News', 'WinBeta', 'thejournal.ie', 'Yahoo Finance', 'The Australian', 'Wall Street Journal', 'PerezHilton.com', 'The Hindu', 'Jerusalem Post Israel News', 'The Hill', 'Benzinga via Yahoo! Finance', 'The Herald', 'BBC News', 'Tristatehomepage.com', 'The Hill (blog)', 'ForexLive', 'Foreign Policy (blog)', 'Financial Times', 'Stars and Stripes', 'Christian Today', 'Palestine Herald Press', 'TheBlaze.com', 'The Guardian', 'Engadget', 'NBCNews.com', 'NBCNews.com', 'Daily Beast', 'Reuters via Yahoo! News', 'CNBC', 'Redmondmag.com', 'ZDNet', 'Forbes', 'fox6now.com', 'Phone Arena', 'Sputnik International', 'Newsmax', 'Hot Air', 'CBS 19 Tyler', 'Digital Arts Online', 'Reuters via Yahoo! Finance', 'The Verge via Yahoo! News', 'The Independent', 'AFP Relax via Yahoo! Philippines News', 'AFP via Yahoo! News', 'New Statesman', 'Arkansas Democrat-Gazette', 'Yahoo News UK', 'South China Morning Post (subscription)', 'Reuters via Yahoo! Finance', 'Washington Times', 'Business Insider via Yahoo Canada Finance', 'The Inquisitr', 'CNN', 'Business Insider via Yahoo UK & Ireland Finance', 'PoliticusUSA', 'Petra News Agency', 'Lifehacker Australia', 'Financial Market News', 'Fortune', 'CNBC', 'Forbes', 'New Kerala', 'SiliconANGLE', 'Salon', 'Seeking Alpha', 'A.V. Club', 'MSDynamicsWorld.com', 'Stuff.co.nz', 'Air Transport World', 'WHIO-TV 7 Dayton', 'Arab News', 'Spectator.co.uk (blog)', 'New York Post', 'Financial Times', 'Komando', 'KTBS', 'NewsDay', 'Reuters', 'Chicago Tribune', 'Bloomberg', 'Daily Caller', 'Reuters', 'Hot Air', 'EUobserver', 'Reuters UK', 'Inquirer.net', 'The Independent', 'Huffington Post', 'MIS Asia', 'Telegraph.co.uk', 'The Press-Enterprise', 'CNN', 'ABC News', 'The Record', 'Digital Journal', 'New York Post', 'Lisbon Morning Journal', 'Financial Times', 'Associated Press via Yahoo! Philippines Sports', 'CNN Money', 'EconoTimes', 'Huffington Post', 'New York Times', 'International Business Times UK', 'Bloomberg', 'MSPoweruser.com', 'Computerworld', 'The New Times', 'TechRepublic via Yahoo! News', 'Channel News Asia', 'SDTimes.com', 'BDlive', 'Vox', 'Money Morning', 'The Drum', 'FOX 8 New Orleans', 'Black Mountain News', 'MIS Asia', 'VICE News', 'Wareable', 'Reuters Blogs (blog)', 'Palestine News Network', "Investor's Business Daily", 'Western Journalism', 'Washington Times', 'ITProPortal', 'ARNnet', 'Jerusalem Post Israel News', 'Tech Insider via Yahoo UK & Ireland News', 'New York Times', 'Bloomberg', 'Business Insider via Yahoo! Finance', 'PC Magazine', 'Market Watch', 'Economic Times', 'Benzinga', 'The Hill', 'TASS', 'Tech News Today', 'Greenfield Daily Reporter', 'Daily Kos', 'www.worldbulletin.net', 'CNBC', 'Slate Magazine', 'The Hill (blog)', 'Bloomberg', 'Reuters via Yahoo UK & Ireland News', 'The Real News Network', 'UPI.com', 'CBC via Yahoo Canada News', 'UPI', 'MSPoweruser.com', 'CBS 19 Tyler', 'The Age', 'Polygon', 'People Magazine', 'E-Commerce Times', 'The Hill', 'Luxury Daily', 'Farmington Daily Times', 'letsrecycle.com', 'NPR', 'Huffington Post', 'WinBeta', 'New Straits Times via Yahoo! Singapore News', 'Business Insider via Yahoo! Finance', 'The Rock Hill Herald', 'Firstpost', 'AAP via Yahoo!7 Finance', 'New York Times Finance', 'TechTarget', 'CommonSpace', '9 to 5 Google', 'Washington Post', 'NPR', 'Telegraph.co.uk', 'Malaysian Digest', 'Newser', 'CNBC via Yahoo! Finance', 'IGN Videogames', 'TechEye', 'AOL News', 'American Enterprise Institute', 'Daily News & Analysis', 'EUROPP - European Politics and Policy (blog)', 'Channelnomics EU (registration)', 'AFP via Yahoo! India News', 'The Daily Star', 'Sydney Morning Herald', 'rabble.ca', 'Computerworld', 'PoliticusUSA', 'Bloomberg', 'MSPoweruser.com', 'MSPoweruser.com', 'Seeking Alpha', 'StepFeed', 'AllAfrica.com', 'AlterNet', 'TIME', 'Channel 8 San Diego', 'Palestine Herald Press', 'Thomson Reuters Foundation', 'Observer', 'KLTV 7 Tyler', 'Brookings Institution', 'CBS Local', 'Western Journalism', 'China.org.cn', 'The Wall Street Journal', 'The Epoch Times', 'The Hindu', 'The Economist', 'CNBC', 'India Infoline', 'The Business of Fashion', 'FuelFix (blog)', 'Firstpost', 'Digital Trends via Yahoo! Sports', 'Reuters Blogs (blog)', 'Economic Times', 'Reuters', 'Fox Business via Yahoo! Finance', 'The Indian Express via Yahoo! India News', 'Advocate.com', 'Huffington Post', 'Economic Times', 'Los Angeles Times', 'Washington Post', 'getreading', 'Associated Press via Yahoo! Finance', 'The Herald', 'Bloomberg', 'Windows Central', 'Hong Kong Free Press', 'Forbes', 'Asia Times', 'Jerusalem Post Israel News', 'Telegraph.co.uk', 'Palestine News Network', 'The Guardian', 'NJ.com', 'Huffington Post', 'TheBlaze.com', 'Associated Press via Yahoo! News', 'Press TV', 'Washington Times', 'Wall Street Journal (blog)', 'Bloomberg', 'Foreign Affairs', 'India Today', 'LGBTQ Nation', 'WABC-TV', 'Philly.com', 'MarketWatch', 'Eyewitness News', 'Salon', 'Bangkok Post', 'Left Foot Forward', 'Business Insider', 'DailyFX', 'TheBlaze.com', 'Wall Street Journal', 'Seattle Times', 'Wall Street Journal', 'Whitehouse.gov (press release)', 'Minneapolis Star Tribune', 'Neurogadget', 'Shanghai Daily (subscription)', 'Haaretz', 'Daily Kos', 'Miami Herald', 'MediaPost', 'The Standard Digital News (press release) (blog)', 'Stuff.co.nz', 'BGR', 'VOA News', 'New York Times', 'The Atlantic', 'Flathead Beacon', 'NDTV', 'AFP via Yahoo! News', 'Bankrate.com', 'BBC News', 'The Guardian', 'Manila Standard Today', 'Bloomberg', 'CNNMoney', 'Huffington Post Canada', '247Sports', 'Business Insider', 'MediaPost', 'Digital Trends via Yahoo! Sports', 'DNAinfo', 'Reuters', 'PCWorld', 'Breitbart News', 'Reuters via Yahoo Canada News', 'legal Insurrection (blog)', 'Reuters', 'GameSpot', 'Duluth News Tribune', 'The ', 'The Globe and Mail', 'Stuff', 'Tech2', 'New York Times', 'TheStreet.com', 'Computer World Australia', 'WFMJ Youngstown', 'Marketwired via Yahoo! Finance', 'The Guardian', 'Al-Monitor', 'The Globe and Mail', 'Chicago Tribune', 'New York Times', 'The Seattle Times', 'Neowin', 'WND.com', 'Eye For Travel', 'Bloomberg', 'AFP via Yahoo UK & Ireland News', 'Washington Times', 'TASS', "Barron's", 'MarketWatch', 'Wall Street Journal', 'The Straits Times', 'Yahoo News', 'ZDNet UK', 'The Guardian', 'Irish Independent', 'Digital Trends via Yahoo! News', 'Financial Times', 'MSNBC', 'Telegraph.co.uk', 'Co.Exist', 'International Business Times via Yahoo UK & Ireland News', 'The Herald', 'CNBC', 'Neurogadget', 'The Independent', 'Washington Post', 'Rapaport', 'Business Insider Australia', 'euronews', 'AutoExpress', 'Kenai Peninsula Online', 'Reuters Africa', 'Guru Focus', 'AFP Relax News via Yahoo! News', 'Nasdaq', 'Reuters UK', 'Fox News', 'Town Hall', 'Irish Independent', 'BusinessDay', 'fox2now.com', 'MSNBC', 'Independent Online', 'Reuters', 'Washington Times', 'American Thinker (blog)', 'The National', 'New Kerala', 'Irish Times', 'Mondoweiss', 'The Times of Israel', 'Washington Times', 'Digital Trends', 'AFP via Yahoo! News', 'Freedom Newspaper', 'WMBF News Myrtle Beach', 'Forbes', 'The Olympian', 'Reuters via Yahoo! Finance', 'WKRG News 5 Mobile', 'A.V. Club', 'Mashable', 'ExtremeTech', 'Castanet.net', 'InfoWorld', 'Politico', 'CNET', 'Houston Public Media', 'NBCSports.com', 'Opposing Views', 'The Rebel', 'Nasdaq', 'NPR', 'ABC News', 'RushLimbaugh.com', 'Engadget', 'MarketWatch', 'New Hampshire Union Leader', 'Atlanta Business Chronicle', 'Economic Times', 'MNR Daily', 'Interactive Investor', 'CBS MoneyWatch', '24/7 Wall St.', 'The Providence Journal', 'The Star Online', 'U.S. News & World Report', 'Moneycontrol.com', 'AAP via Yahoo!7 Finance', 'AFP via Yahoo!7 Finance', 'Neowin', 'YLE News', 'Business Wire via Yahoo! Finance', 'The Electronic Intifada (blog)', 'The Guardian', 'Reuters UK', 'MarketWatch via Yahoo UK & Ireland Finance', 'NJ.com', 'The Globe and Mail', 'The Root', 'ABC News via Yahoo! News', 'ComputerWeekly.com', 'MSPoweruser.com', 'GlobeNewswire via Yahoo! New Zealand Finance', 'Reuters via Yahoo Canada News', 'Times of India', 'Daily Mail', 'Medical Xpress', 'Premium Times', 'Radio Pakistan (press release)', 'The Nation.', 'Business Insider', 'Bloomberg', 'Yahoo News', 'Newstalk ZB', 'GuruFocus.com', 'Reuters UK', 'CNBC', 'NPR', 'Reuters', 'USA TODAY', 'Colorado Springs Gazette', 'The Canadian Press via Yahoo Canada News', 'Town Hall', 'Computer World Australia', 'Nine O'Clock', 'AAP via Yahoo!7 Finance', 'Wall Street Journal', 'AFP via Yahoo! News', 'Mashable', 'ZDNet', 'KDLT News', 'Finance and Commerce', 'The Japan Times', 'Canada.com', 'NZ Newswire via Yahoo! New Zealand News', 'Politico', 'The News', 'Breitbart News', 'CNN', 'The Wall Street Journal', 'Business Insider', 'CNBC via Yahoo! Finance', 'Aljazeera.com', 'WMPoweruser.com', 'NDTV', 'The Sunday Times Sri Lanka', 'Salon', 'Seeking Alpha', 'Engadget', 'Eyewitness News', 'The Indian Express', 'Sydney Morning Herald', 'MSNBC', 'Mediaite', 'AFP via Yahoo! India News', 'Market Realist', 'NPR', 'CNET', 'Reuters', 'Grand Forks Herald', 'CCTV-America', 'EUobserver', 'CNN', 'Bloomberg', 'Evening Standard', 'Intifada Palestine', 'Chicago Tribune', 'TASS', 'AFP via Yahoo Maktoob News', 'Roanoke Times', 'Wall Street Journal', 'Financial Market News', 'Bloomberg', 'ABC News', 'I4U News', 'Alaska Dispatch News', 'The Star Online', 'Politico', 'Channel NewsAsia', 'Chicago Tribune', 'The Indian Express via Yahoo! India News', 'Chicago Tribune', ' ', 'MarketWatch via Yahoo! New Zealand Finance', 'BBC News', 'Telegraph.co.uk', 'Fast Company Magazine', 'Ceylon Daily News', 'Politico', 'The Fiscal Times via Yahoo! News', 'PoliticusUSA', 'New Haven Register', 'Quartz', 'Bloomberg', 'Sputnik International', 'Yahoo Finance via Yahoo! News', 'New York Post', 'Los Angeles Times', 'Business Insider', 'Al-Monitor', 'Reuters', 'www.worldbulletin.net', 'Fox News', 'The Verge', 'STLtoday.com', 'CNN', 'Tech Times', 'Truth-Out', 'USA TODAY', 'U.S. News & World Report', 'Physics Today', 'Channel NewsAsia', 'Salon', 'Insurance Journal', 'Wall Street Journal', 'Business Standard', 'VICE News', 'Press Telegraph (blog)', 'MSPoweruser.com', 'NPR', 'New Kerala', 'Washington Post', 'Daily Star', 'The Times of Israel', 'www.worldbulletin.net', 'Forbes', 'Quartz', 'American Thinker (blog)', 'Cloud Pro', 'The Week Magazine', 'Regina Leader-Post', 'WTHR Indianapolis', 'MSN Autos', 'Sputnik International', nan, 'Huffington Post', 'EUROPP - European Politics and Policy (blog)', 'Henderson Daily News', 'TIME', 'Express.co.uk', 'Vanguard', 'The Independent', 'MSPoweruser.com', 'The Christian Science Monitor', 'The Forward', 'The Globe and Mail', 'New York Post', 'Reuters via Yahoo! Finance', 'DesMoinesRegister.com', 'Co.Design', 'Fox News', 'Express.co.uk', 'Irish Times', 'Washington Times', 'Daily Caller', 'RTV Slovenija', 'Computerworld', 'CBC.ca', 'The Hill (blog)', 'Billboard', 'Regina Leader-Post', 'ABC News', 'New Republic', 'The Guardian', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'PanARMENIAN.Net', 'Media Matters for America', 'Wall Street Journal', 'The Guardian', 'The Guardian', 'Washington Times', 'Business Today', 'Thurrott.com (blog)', 'The Hans India', 'Bloomberg', 'WABC-TV New York', 'Salon', 'Al-Monitor', 'Washington Post', 'TechCrunch', 'Al-Ahram Weekly', 'TVbytheNumbers', 'Engadget', 'BBC News', 'The Times of Israel', 'News 1130', 'The Hill (blog)', 'The Verge', 'Western Journalism', 'Forbes', 'MSPoweruser.com', 'Calgary Herald', 'Environmental Finance', 'Breitbart News', 'Bustle', 'Deutsche Welle', 'International Business Times via Yahoo UK & Ireland News', 'Business Insider via Yahoo! Finance', 'Chicago Tribune', 'USA TODAY', 'Reason (blog)', 'SBS', 'Phys.Org', 'Fast Company Magazine', 'BDlive', 'AFP via Yahoo! India News', 'Manila Bulletin', 'KTLA', 'The Denver Post', 'IBNLive', 'NPR', 'http://wales.gov.uk/', 'Colorado Springs Gazette', 'WSFA 12 Montgomery', "Barron's", 'Press TV', 'Bloomberg View', 'POLITICO Magazine', 'BBC News', 'AAP via Yahoo! New Zealand Finance', 'CNBC', 'NBCNews.com', 'Lifehacker Australia', 'Reuters UK', 'Antiwar.com', 'Intifada Palestine', 'SiliconANGLE', 'The Times of Isra\x9d\x9dl', 'Free Malaysia Today', 'Reuters via Yahoo UK & Ireland Finance', 'Business Insider', 'Voice of America', 'Business Wire via Yahoo! Finance', 'Yahoo News', 'Sky News via Yahoo Canada News', 'RenewEconomy', 'International Business Times via Yahoo UK & Ireland News', 'Seeking Alpha', 'Town Hall', 'Associated Press via Yahoo UK & Ireland News', 'Reuters', 'Business Wire (press release)', 'WinBeta', 'Bloomberg', 'TheJournal.ie via Yahoo UK & Ireland News', 'Evening Standard', 'New York Post', 'Heritage Florida Jewish News', 'Wall Street Journal', 'The Straits Times', '+972 Magazine', 'VG247', 'Profit Confidential', 'Arutz Sheva', 'Vox', 'Toronto Star', 'East Asia Forum', 'NPR', 'Economic Times', 'Reuters', 'TechRadar', 'Forbes', 'Daily Reckoning - Australian Edition', 'Vox', 'New York Times', 'Politico', 'Forbes', 'News West 9 Midland', 'U.S. News & World Report', 'Intifada Palestine', 'Deseret News', 'Data Center Knowledge', 'ABC News', 'The Hill', 'Microsoft - Channel 9 (blog)', 'The Jewish Journal of Greater Los Angeles', 'Forbes', 'BBC News', 'Entertainment Tonight', 'USA TODAY', 'Associated Press via Yahoo! News', 'CNN Money', 'AFP via Yahoo! News', 'Business Insider', 'Bloomberg via Yahoo! Finance', 'ITV News', 'The Nation Newspaper', 'Benzinga', 'Al-Ahram Weekly', 'KTRE Lufkin and Nacogdoches', 'Washington Post', 'Al-Arabiya', 'ABC Online', 'The Wire', 'Arizona Daily Star', 'The Korea Herald', '9 to 5 Mac', 'Western Journalism', 'WAFA - Palestine News Agency', 'Windows Central', 'The Atlantic', 'Bloomberg', 'ITWeb', 'www.worldbulletin.net', 'BBC News', 'The Intercept', 'Yahoo News', 'WAPT Jackson', 'TechWorld', 'ABC News', 'Daily Mail', 'Windows IT Pro', 'Windows Central', 'GQ Magazine', 'New York Times', 'Asia Times', 'Irish Examiner', 'The Guardian', 'Telegraph.co.uk', "Barron's", 'Bloomberg via Yahoo! Finance', 'Marketwired (press release)', 'Times Colonist', 'The Nation Newspaper', 'BetaNews', 'Metrotvnews.com', 'EconomyWatch.com', 'Denver Post', 'Whitehouse.gov (press release)', 'RealClearPolitics', 'Yahoo Finance', 'Al Jazeera via Yahoo UK & Ireland News', 'Bloomberg', 'Arkansas Democrat-Gazette', 'SiliconANGLE', 'The Guardian', 'Huffington Post', 'WLWT-TV Cincinnati', 'The News International', 'Economic Times', 'Economic Times', 'Bearing Arms', 'Wall Street Journal (blog)', 'Truth-Out', 'MarketWatch', 'The Real News Network', 'Bloomberg', 'Tech Insider via Yahoo UK & Ireland News', 'Munchies_ Food by VICE', 'Ventures Africa', 'The Star Online', 'New York Times Finance', 'Computer World Australia', 'Reuters', 'Wall Street Journal', 'PanARMENIAN.Net', 'MetroNews Canada', 'bnn.ca', 'South China Morning Post (subscription)', 'CBS New York', 'Business Insider via Yahoo! Finance', 'Associated Press via Yahoo! News', 'CNBC', 'Reason (blog)', 'The Next Web', 'Mediaite', 'The Globe and Mail', 'Firstpost', 'Deccan Herald', 'International Solidarity Movement', 'AFP via Yahoo! News', 'Rappler', 'Stuff.co.nz', 'expressandstar.com', 'Seeking Alpha', 'FiveThirtyEight', 'Seattle Times', 'EurActiv', 'Entertainment Weekly', 'AfricaNews', 'Reuters UK', 'Al Jazeera via Yahoo Maktoob News', 'CNN', 'AFP via Yahoo! News', 'Committee for Accuracy in Middle East Reporting in America', 'The Scotsman', 'Washington Post', 'Digital Trends via Yahoo! Sports', 'Broadcasting & Cable', nan, 'CNN', 'Chicago Tribune', 'CIO', 'The Russellville Courier', 'Los Angeles Times', 'Aljazeera.com', 'CBC via Yahoo Canada News', 'The Verge', 'Sydney Morning Herald', 'The Atlantic', 'SegmentNext', 'RT', 'Sydney Morning Herald', 'Politico', 'BBC News', 'MSPoweruser.com', 'Bloomberg', 'NEWS.com.au', 'AllAfrica.com', 'Timesonline.com', 'New Zealand Herald', 'New York Times', 'WalesOnline', 'Economic Times', 'CNSNews.com', 'Brisbane Times', 'Free Malaysia Today', 'Eurogamer.net', 'The Bubble', 'Reuters', 'The Dismal Scientist (subscription)', 'Daily Mail', 'The Jewish Press (blog)', 'Economic Times', 'NPR', 'Scotsman', 'Zero Hedge', 'Space.com', 'PE Hub (subscription) (blog)', 'TechNewsWorld', 'Fox News', 'Foreign Policy Journal', 'CNBC', 'The Register', 'The Guardian Nigeria (satire) (press release) (blog)', 'Politico', 'Fortune', 'NBC Chicago', 'GMA News Online', 'Chicago Tribune', 'Philippine Star', 'CNNMoney', 'Nasdaq', 'Daily Caller', 'Galesburg Register-Mail', 'Daily Caller', 'Softpedia News', 'TPM', 'Windows Central', 'The Hill (blog)', 'CNBC via Yahoo! New Zealand Finance', 'Fox News', 'Voice of America', 'Bloomberg via Yahoo! Finance', 'East Bay Times', 'CNET', 'Contractor UK', 'ABC News', 'Forbes', 'Sydney Morning Herald', 'GQ Magazine', 'Network World', 'Business Insider', 'WinBeta', 'Tablet Magazine', 'Accuracy In Media (blog)', 'BetaNews', 'Berwick Today', 'Gizmodo', 'Boing Boing', 'Computerworld', 'USA TODAY', '680 News', 'TASS', 'Philippine Star', 'TASS', 'Manila Bulletin', 'Telegraph.co.uk', 'South African Broadcasting Corporation', 'Los Angeles Times', 'News West 9 Midland', 'Fox News', 'AFP via Yahoo! News', 'Malta Independent Online', 'Wall Street Journal', 'SuperSite for Windows', 'The New Zealand Herald', 'India Today', 'Charlotte Observer', 'CNBCAfrica.com', 'Jerusalem Post Israel News', 'News.com.au', 'Computerworld Australia', 'CNN', 'Computer World Australia', 'Quincy Herald-Whig', 'Mediaite', 'Irish Independent', 'Baltimore Sun (blog)', 'NDTV', 'Oilprice.com via Yahoo! Finance', 'Hamilton Spectator', 'StreetInsider.com', 'The Washington Times', 'LancasterOnline', 'Raw Story', 'CTV News', 'www.worldbulletin.net', 'Reuters via Yahoo! News', 'Barre Montpelier Times Argus', 'Engadget', 'News1130', 'The Advocate', 'SuperSite for Windows', 'Merced Sun-Star', 'Business Insider', 'BetaNews', 'Daily Reckoning - Australian Edition', 'New York Times', 'The Verge', 'VentureBeat', 'Complex', 'Financial Times', 'Market Watch', 'Jerusalem Post Israel News', 'Sydney Morning Herald', 'Yahoo News', 'Press-Enterprise', 'Breitbart News', 'Washington Examiner', 'International Business Times via Yahoo UK & Ireland News', 'Style News - StyleWatch - People.com', 'International Business Times AU', 'Breitbart News', 'WalesOnline', 'EJ Insight', 'KTVB', 'CNN', 'The Washington Times', 'Natural Resources Defense Council', 'Reuters via Yahoo! Sports', 'Irish Times', 'Reuters via Yahoo! Sports', 'The Times of Israel', 'Intifada Palestine', 'Salon', 'Foreign Policy Journal', 'Breitbart News', 'Viet Nam News', 'MENAFN', 'MSPoweruser.com', 'Reuters via Yahoo UK & Ireland News', 'MarketWatch', 'Topsail Voice', 'CBS News', 'rabble.ca (blog)', 'International Business Times via Yahoo UK & Ireland News', 'Newsweek', 'FOX 59 Indianapolis', 'Diginomica', 'TechRepublic', 'NPR', 'PCWorld', 'BDlive', 'The Hill (blog)', 'KTLA', 'Wall Street Journal', 'Reuters', 'AOL News', 'The Australian Financial Review', 'Palestine News Network', 'Wall Street Journal (subscription)', 'PC World', 'The Post and Courier', 'Washington Examiner', 'Yahoo Politics', 'MarketWatch', 'TPM', 'PoliticusUSA', 'Irish Times', 'PC World', 'Parti Anti Sioniste', 'Power Line (blog)', 'Washington Times', 'New York Times', 'Carteret County News-Times', 'Wall Street Journal (subscription)', "Investor's Business Daily", 'eWeek', 'Market Realist via Yahoo! Finance', 'AFP via Yahoo! New Zealand News', 'Fox News', 'The Local Denmark', 'Time Magazine', 'Bernama', 'Zacks via Yahoo!7 Finance', 'Reuters UK', 'ABC News', 'Redmond Channel Partner', 'Forbes', 'Los Angeles Times', 'Sky News via Yahoo Canada News', 'Clapway', "Investor's Business Daily", 'Hot Air', 'FXStreet', 'Eyewitness News', 'BreakingNews.ie', 'Daily Kos', 'MobileSyrup.com', 'Reuters via Yahoo UK & Ireland News', 'ZDNet', 'TeenVogue.com', 'CNBC', 'Yahoo News', 'The Chronicle Herald', 'MSPoweruser.com', 'AfricaNews', 'Softpedia News (blog)', 'AFP via Yahoo! News', 'Fresno Bee', 'CNBC', 'BuzzFeed News', 'Seattle Times', 'The Atlantic', 'Manila Bulletin', 'The Conversation US', 'Mobile Payments Today', 'SuperSite for Windows', 'The Boston Globe', 'AllAfrica.com', 'Kansas City Business Journal', 'TASS', 'Breitbart News', 'Vanguard', 'Ahram Online', 'WSBT-TV', 'Reuters via Yahoo! Finance', 'Bloomberg', 'TPM', 'ABC Online', 'Business Insider via Yahoo! Finance', 'Computer Business Review', 'CBS 19 Tyler', 'New York Daily News', 'Media Matters for America (blog)', 'IDN InDepthNews | Analysis That Matters', 'The Guardian', 'The Motley Fool', 'L'Atelier', 'Egypt SIS (press release)', 'The Guardian', 'GlobeNewswire (press release)', 'The Guardian (blog)', 'DunyaNews Pakistan', 'Telegraph.co.uk', 'Tech Pinas', 'Businessinsider India', 'Malta Independent Online', 'Yahoo News', 'Business Insider', 'WND.com', 'Deutsche Welle', 'Green Left Weekly', 'The Indian Express', 'IT PRO', 'MENAFN', 'Economic Times', 'NBC NEWS', 'Economic Times', 'ABC Online', 'www.worldbulletin.net', 'Economic Times', 'The Conversation UK', 'Billboard', 'Fox News', 'Latin Post', 'CNN Philippines', 'Economic Times', 'NDTV', 'Electronics EETimes (registration)', 'MSNBC', 'Bloomberg', 'CNET', 'WinBeta', 'FOX 28 South Bend', 'Madison.com', 'InfoWorld', 'Cities Today', 'MarketWatch', 'PC Magazine', 'The Japan Times', 'CNN', 'Denver Post', 'AAP via Yahoo!7 Finance', 'New York Times', 'Middle East Eye', 'Business Insider', 'The Car Connection', 'Wall Street Journal', 'EconoTimes', 'This is Money', 'Reuters Africa', 'EconomyWatch.com', 'Hindu Business Line', 'Security Intelligence (blog)', 'PR Newswire via Yahoo! Finance', 'International Herald Tribune', 'Oneonta Daily Star', 'BuzzFeed News', 'Associated Press via Yahoo! News', 'CNBC', 'WinBeta', 'Associated Press via Yahoo! Singapore Sports', 'WinBeta', 'WinBeta', 'OilPrice.com', 'Pittsburgh Post-Gazette', 'Los Angeles Times', 'Economic Times', 'Catholic Herald Online', 'CNBC', 'NBC4 Washington', 'Money Magazine', 'TIME', 'The Independent', 'Business Green', 'WinBeta', 'Western Journalism', 'Northwest Arkansas News', 'NPR', 'Ghanaweb.com', 'Reuters UK', 'TechCrunch', 'Digital Trends via Yahoo Canada News', 'EMQ', 'News Sentinel', 'CNBC (subscription)', 'Chichester Observer', 'InformationWeek', 'CNBC', 'Cyprus Mail', 'Pensacola News Journal', 'The Rock Hill Herald', 'WFDD', 'Washington Post', 'The Globe and Mail', 'CNN', 'Greenfield Daily Reporter', 'seattlepi.com', 'Waterloo Record', 'Al-Monitor', 'The Globe and Mail', 'AFP via Yahoo Maktoob News', 'Vanguard', 'RT', 'Climate Home', 'GSMArena.com', 'TPM', 'Express.co.uk', 'Washington Examiner', 'Fox News', 'Associated Press via Yahoo UK & Ireland Finance', 'Fox News', 'TechCrunch', 'Raw Story', 'USA TODAY', 'Redmondmag.com', 'International Business Times via Yahoo UK & Ireland News', 'CoinDesk', 'Open Democracy', 'Washington Post', 'AFP via Yahoo! News', 'Associated Press via Yahoo! News', 'Bloomberg', 'Los Angeles Times', 'Huffington Post', 'Fusion', 'Kathimerini', 'Economic Times', 'MacDailyNews', 'Reuters', 'Nikkei Asian Review', 'WGAL 8 Susquehanna Valley', 'The Hill', 'Reuters via Yahoo! Finance', 'Town Hall', 'The National', 'New York Magazine', 'BDlive', 'Jamaica Observer', 'New York Times', 'CNSNews.com', 'Newsday', 'Reuters via Yahoo! News', 'Asia Society (blog)', 'Wall Street Journal', 'The Mckeesport Daily News', 'Politico', 'Yahoo Finance UK', 'NPR', 'Geeky Gadgets', 'SiliconANGLE', 'Reuters via Yahoo! News', 'Jerusalem Post Israel News', 'MSPoweruser.com', 'Windows Central', 'TheTower.org', 'Sydney Morning Herald', 'Madison.com', 'NDTV', 'Politico', 'Express.co.uk', 'Digital Trends', "Crain's Chicago Business", 'Fox Business', 'American Thinker', 'The Canadian Press via Yahoo Canada News', 'Sydney Morning Herald', 'The Week Magazine', 'Press and Journal', 'Al Huffington Post', 'Nikkei Asian Review', 'The Hindu', 'AFP via Yahoo! India News', 'Telegraph.co.uk', 'Irish Times', 'Reuters UK', 'Digital Trends via Yahoo! News', 'The Register', 'RT', 'Forbes', 'Ars Technica', 'Gizmodo', 'Washington Free Beacon', 'Neowin', 'Forbes', 'CIO', 'Business Wire', 'Bloomberg', 'SNAPPA Technology via Yahoo UK & Ireland News', 'WCVB Boston', 'Washington Times', 'Houston Chronicle', 'thejournal.ie', 'Algemeiner', 'Fox News', 'The Australian', 'Business Insider via Yahoo! Finance', 'Sustainable Brands', 'Counsel & Heal', 'Entertainment Weekly', 'Slashdot', 'Reuters via Yahoo Canada Finance', 'The Inquisitr', 'SiliconANGLE', 'NBCNews.com', 'Forbes', 'Yahoo News', 'PC-Tablet', 'Channel NewsAsia', 'CBC.ca', 'Chinapost', 'Independent Online', 'Reuters via Yahoo! Singapore News', 'KABC-TV', 'The Huffington Post', 'Daily Caller', 'Himalayan Times', 'Reuters India', 'CNN Money', 'gulfnews.com', 'Fox News', 'Times of India', 'Wall Street Journal', 'Independent Online', 'Voice of America', 'The Hill (blog)', 'www.worldbulletin.net', 'Windsor Star', 'The Herald', 'Hong Kong Free Press', 'Bloomberg', 'Brisbane Times', 'Digital Trends via Yahoo! Sports', 'Daily Signal', 'Newsday', 'EurActiv', 'Ars Technica', 'NewsOK.com', 'Economic Times', 'Washington Post (blog)', 'CNN International', 'CNET', 'Reuters', 'Reuters', 'American Thinker (blog)', 'CNN International', 'Baltimore Sun (blog)', 'TheBlaze.com', 'New York Post', 'Yahoo Finance', 'Associated Press via Yahoo Maktoob News', 'MIS Asia', 'Business Insider', 'The New Zealand Herald', 'Pacific Standard', 'Tuoitrenews (press release)', 'Zimbabwe Independent', 'The Times of Israel', 'AFP via Yahoo! India News', 'Salon', 'Associated Press via Yahoo! Finance', 'China Daily', 'NewsGhana.com.gh', 'Reuters via Yahoo! Finance', 'gulfnews.com', 'Albuquerque Journal', 'NUVO Newsweekly', 'The Guardian', 'Motley Fool', nan, 'Macworld', 'Digital Trends via Yahoo! Sports', 'International Business Times AU', 'Manawatu Standard', 'Daily Caller', nan, 'Global Risk Insights', 'azcentral.com', 'The Week Magazine', 'American Thinker (blog)', 'New York Times', 'WGRZ.com', 'Bristol Herald Courier (press release) (blog)', 'Associated Press via Yahoo! Finance', 'eNCA', 'YourStory.com', 'Toronto Star', 'The Verge', 'Softpedia News', 'Christian Science Monitor', 'Brisbane Times', 'The Canadian Press via Yahoo Canada News', 'Business Insider', 'New York Daily News', 'Sputnik International', 'Hellenic Shipping News Worldwide', 'Investing.com', 'NewsBusters (blog)', 'Bloomberg', 'Death and Taxes', 'This is Money', 'ABC News', 'London Evening Standard', 'Huffington Post', 'Miami Herald', 'The Atlantic', 'Yahoo7 News', 'Arab News', 'KTVB.com', 'gulfnews.com', 'NEWS.com.au', 'The Spokesman-Review', 'Australian Jewish News', 'Techradar India', 'Market Realist via Yahoo! Finance', 'International Business Times UK', 'Reuters', 'The Verge', 'InformationWeek', "Talkin' Cloud", 'Bloomberg', 'HardwareZone', 'ZDNet', 'Reuters via Yahoo Canada News', 'MIS Asia', 'The Wall Street Journal', 'Jakarta Post', 'CNBC', 'Softpedia News', 'Wall Street Journal (blog)', 'The Intercept', 'Reuters', 'NBCNews.com', 'Timaru Herald', 'Digital Trends via Yahoo! Sports', 'U.S. News & World Report (blog)', 'CNN Money', 'New Republic', 'Raw Story', 'USA TODAY', 'Palestine Herald Press', 'FXStreet', 'Washington City Paper (blog)', 'Washington Post (blog)', 'Belfast Telegraph', 'Palestine Herald Press', 'The Conversation US', 'CNBC', 'The Root', 'Vox', 'Reuters via Yahoo! India News', 'Al-Bawaba', 'Huffington Post', 'Reuters', 'ABC News', 'Business Insider', '5newsonline.com', 'Forbes', 'New York Times', 'SlashGear', 'Telegraph.co.uk', 'Business Wire via Yahoo UK & Ireland Finance', 'Tampa Bay Review', 'IBNLive', 'Cambridge News', 'Reuters via Yahoo Canada News', 'Nasdaq', 'NEWS.com.au', 'CBC.ca', 'The Australian Financial Review', 'National Post', 'CNN.com', 'IANS India Private Limited/Yahoo India News via Yahoo! Singapore News', 'NPR', 'Reuters', 'The Register', 'Ennahar', 'CNBC', 'Wall Street Journal', 'Nikkei Asian Review', 'Motley Fool', 'Los Angeles Times', 'Digital Trends', 'Reuters', 'BDlive', 'Reuters UK', 'Palm Beach Post', 'The Canadian Press via Yahoo Canada Finance', 'New York Times (blog)', 'Business Wire via Yahoo! Finance', 'The Verge', 'Daily News & Analysis', 'Huffington Post', 'WAFA - Palestine News Agency', 'Concord Transcript', 'International Business Times via Yahoo UK & Ireland News', 'The Canadian Press via Yahoo Canada News', 'POLITICO Magazine', 'Daily Signal', 'EconoTimes', 'This is Money', 'PJ Media', 'Associated Press via Yahoo! News', 'Columbus Dispatch', 'Times of India', '24/7 Wall St. via Yahoo! Finance', 'International Business Times', 'GMA News', 'MarketWatch', 'The Hindu', 'VentureBeat', 'Billboard', "L'Orient-Le Jour", 'Prensa Latina', 'Seeking Alpha', 'MSPoweruser.com', 'AFP via Yahoo! India News', 'ZDNet', 'The Korea Herald', 'BBC News', 'The Intercept', 'The Electronic Intifada', 'MSNBC', 'CNN', 'IANS India Private Limited via Yahoo! India News', 'PolitiFact', 'Times of India', 'Digital Trends via Yahoo Maktoob News', 'BBC News', 'BDlive', nan, 'Aljazeera.com', 'Business Insider', 'Economic Times', 'WAFF', 'Washington Post', 'PCWorld', "Tom's Guide", 'Politico', 'Bloomberg', 'MIS Asia', 'The Daily Star', 'gulfnews.com', 'RenewEconomy', 'MSPoweruser.com', 'TheBlaze.com', 'AFP via Yahoo! India News', 'SAMAA TV (press release) (registration) (blog)', 'Breitbart News', 'Financial Post', 'Irish Examiner', 'Associated Press via Yahoo! News', 'TASS', 'BBC News', 'TPM', 'MSPoweruser.com', 'Shields Gazette', 'New York Post', 'The Business of Fashion', 'AAP via Yahoo!7 Finance', 'Huffington Post UK', 'BetaNews', 'Inside Higher Ed', 'WinBeta', 'The Independent', 'KCRA Sacramento', 'TheBlaze.com', 'Arab News', 'Al-Monitor', 'The Verge', 'The Electronic Intifada (blog)', 'Palestine Herald Press', 'CNBC via Yahoo! Finance', 'Associated Press via Yahoo! News', 'The Inquirer', 'The Irish Times', 'The Washington Times', 'The Merkle (blog)', 'Philippine Star', 'Hindu Business Line', 'Wall Street Journal', 'American Thinker (blog)', 'Financial Times', 'Daily Mail', 'TheBlaze.com', 'Sydney Morning Herald', 'Fortune', 'The Hill (blog)', 'Daily Caller', 'The Verge', 'Financial Post', 'The Register', 'MarketWatch', 'Daily Sabah', 'Fight Back! Newspaper', 'Los Angeles Times', 'www.worldbulletin.net', 'Phys.Org', 'U.S. News & World Report', 'Bloomberg', 'New York Daily News', 'Co.Exist', 'Xinhua', 'The Press', 'CNBC', 'Stars and Stripes', 'BetaNews', 'RushLimbaugh.com', 'Scientific American', 'Newsweek', 'Bloomberg via Yahoo! Finance', 'International Middle East Media Center', 'India.com', 'The Seattle Times', 'OilPrice.com', 'Reuters UK', 'FleetNews', 'Washington Times', 'Quad City Times', 'SDTimes.com', 'The Boston Globe', 'Digital Trends via Yahoo! Sports', 'The Rock Hill Herald', 'South China Morning Post (subscription)', 'ABC News', 'The Motley Fool', 'TechWeekEurope UK', 'The Star Online', 'KSL.com', 'MSPoweruser.com', 'The New Zealand Herald', 'Reuters', 'MarketWatch', 'Asheboro Courier Tribune', 'Fast Company', 'Nasdaq', 'PBS NewsHour', 'The Verge via Yahoo! News', 'National Observer', 'Financial Times', 'Al-Bawaba', 'CBS News', 'Lowell Sun', 'WDTN', 'Economic Times', 'Telegraph via Yahoo UK & Ireland Finance', 'Wicked Local Natick', 'www.worldbulletin.net', 'Grist', 'Press Release Rocket', 'Vox', 'Devex', 'Helena Independent Record', 'ABC News', 'Business Insider', 'IANS India Private Limited/Yahoo India News via Yahoo! India News', 'The Australian Financial Review', 'Associated Press via Yahoo! News', 'Kotaku', 'Wall Street Journal', 'Reuters via Yahoo UK & Ireland Finance', 'Globalnews.ca', 'Al Bawaba', 'HEXUS', 'Miami Herald', 'RollingStone.com', 'Newsweek', 'Justmeans (blog)', 'Palestine News Network', 'TV Newsroom', 'USA TODAY', 'ABC News', 'The Wall Street Journal', 'TechRadar', 'Business Insider', 'Reuters', 'TheBlaze.com', 'Traverse City Record Eagle', 'CBC via Yahoo Canada News', 'Sputnik International', 'Enterprise Times', 'MacroBusiness (blog)', 'The Independent', 'NPR', 'WNCT', 'The Globe and Mail (subscription)', 'MENAFN', 'The Guardian', 'Variety via Yahoo! Finance', 'Associated Press via Yahoo! Philippines News', 'Palestine News Network', 'The Register', 'VG247', 'Market Realist via Yahoo! New Zealand Finance', 'Nasdaq', 'IT World', 'TASS', 'Reuters UK', 'Lynchburg News and Advance', 'Reuters via Yahoo UK & Ireland News', 'The Hill', 'Times of India', 'AFP via Yahoo! News', 'Washington Times', 'Palladium-Item', 'Digital Trends via Yahoo Canada News', 'MSPoweruser.com', 'The Register', 'La Croix', 'Peeblesshire News', 'PBS NewsHour', 'Washington Times', 'Otago Daily Times', 'Al-Monitor', 'BigPond News', 'CTV News', 'Business Insider', 'WinBeta', 'Bloomberg via Yahoo!7 Finance', 'A.V. Club (blog)', nan, 'Foreign Affairs (subscription)', 'PR Newswire (press release)', 'NPR', 'The Electronic Intifada', 'CNBC', 'Fortune', 'EU News', 'The Guardian', 'AOL News', 'International Business Times', 'BizNews', 'ABC News', 'Daily Times', 'The Verge', 'Quartz', 'AFP via Yahoo! India News', 'The Fresno Bee', 'American Enterprise Institute', 'The Wire', 'Wall Street Journal', 'iDigitalTimes.com', 'NPR', 'Albuquerque Journal', 'Indiatimes.com', 'ITProPortal', 'Nikkei Asian Review', 'TechRepublic', 'Reuters via Yahoo! News', 'Sputnik International', 'Naked Security', 'AAP via Yahoo!7 Finance', 'Financial Times', 'Washington Post', 'Neowin', 'New York Times', 'AllAfrica.com', 'Bloomberg', 'New York Times', 'Reuters', 'The Herald', 'Russia and India Report', 'Market Watch', 'Digital Trends via Yahoo UK & Ireland News', 'CNBC', 'The Seattle Times', 'MIS Asia', 'gulfnews.com', 'Globalnews.ca', 'Business Insider', 'Slate Magazine (blog)', 'Refinery29', 'The Harvard Crimson', 'Market Realist', 'GeekWire', 'Reuters', 'iDigitalTimes.com', 'Press TV', 'New York Times', 'Associated Press via Yahoo UK & Ireland Finance', 'Business Insider UK Finance via Yahoo Canada Finance', 'Reuters', 'Yahoo Singapore News', 'CNBC', 'The Atlantic', 'The Guardian Nigeria (satire) (press release) (blog)', 'South China Morning Post (subscription)', 'Palestine News Network', 'Daily Mail', 'The Inquisitr', 'Tewkesbury ADMAG', 'Lifehacker Australia', 'Associated Press via Yahoo! News', 'NDTV', 'The Forward', 'FrontPage Magazine', 'WTMA', 'AsiaOne', 'The Daily Star', 'PerezHilton.com', 'VentureBeat', 'The Hill', 'USA TODAY', 'Stars and Stripes', '24/7 Wall St.', 'Business.com', 'The Financial Express via Yahoo! Finance India', 'WND.com', 'Anadolu Agency', 'Reuters via Yahoo! News', 'New York Times', 'Sputnik International', 'Western Journalism', 'Business Recorder', 'KLTV 7 Tyler', 'ThinkProgress', 'WISN 12 Milwaukee', 'The Durango Herald', 'Reuters via Yahoo! Finance', 'Financial Post', 'Forbes', 'CNBC', 'Associated Press via Yahoo! News', 'Metal Injection.net', 'ANI via Yahoo! India News', 'UPI', 'RealClearPolitics', 'ZDNet', "The People's Voice", 'Bloomberg', 'Independent Online', 'Reuters', 'Digital Trends via Yahoo! News', 'American Thinker (blog)', 'Helsingin Sanomat', 'CBC.ca', 'GSMArena.com', 'American Thinker', 'Lifehacker', 'WWAY NewsChannel 3', 'MyCentralJersey.com', 'Morning Journal News', 'Vox', 'The Independent', 'New York Times', 'The Nation - Thailand's English news', 'Softpedia News', 'ABC News', 'TheBlaze.com', 'economia', 'AFP via Yahoo! News', 'The Wall Street Journal', 'In-Cyprus (press release) (subscription) (blog)', 'PC Advisor', 'YES! Magazine', 'TPM', 'The Inquisitr', 'RealClearPolitics', 'TechCrunch', 'Business Insider via Yahoo! Finance', 'The Hill (blog)', 'Digital Trends via Yahoo! Sports', 'SiliconIndia', 'Washington Times', 'Game Informer', 'Macworld', 'Sydney Morning Herald', 'The Hill (blog)', 'Town Hall', 'Daily Democrat', 'Christian Post', 'Eyewitness News', 'Tech Times', 'NewsBusters (blog)', 'Computerworld', 'Atlanta Journal Constitution', 'ThinkProgress', 'The Big Lead', 'FXStreet', 'Yahoo7 News', 'Hindustan Times', 'AFP via Yahoo!7 News', 'TechCrunch', 'MSPoweruser.com', 'CNBC', 'Economic Times', 'Bloomberg', 'AOL News', 'The Australian', 'The Canadian Press via Yahoo Canada Finance', 'Reuters', 'CBS 19 Tyler', 'Channel NewsAsia', 'The Register', 'Bloomberg', 'ABC News', 'Asbury Park Press', 'Washington Post', 'Belfast Telegraph', 'NPR', 'Reuters', 'Sky News via Yahoo UK & Ireland News', 'Financial Times', 'The Wall Street Journal', 'East Coast Radio', 'Denver Post', 'Washington Post (blog)', 'TheWrap', 'Global Risk Insights', 'Center for Research on Globalization', 'The Wall Street Journal', 'RenewEconomy', 'Reuters via Yahoo!7 News', 'PR Newswire', 'Reuters via Yahoo! News', 'ZDNet', 'Sydney Morning Herald', 'Gulf News', 'The Atlantic', 'Yahoo News', 'Business Insider via Yahoo UK & Ireland Finance', 'New Jersey Herald', 'SiliconANGLE (blog)', 'Hawaii News Now', 'Washington Post', 'News & Observer (blog)', 'AFP via Yahoo!7 Finance', 'CTV British Columbia News', 'Yahoo Finance UK', 'Gulf Business News', 'NBCNews.com', 'South China Morning Post (subscription)', 'MIS Asia', 'Financial Market News', 'Daily Mail', 'Inside INdiana Business', 'MSDynamicsWorld.com', 'Vanguard', 'Politico', 'Market Watch', 'Zacks via Yahoo! Finance', 'Town Hall', 'Marketwired via Yahoo! Finance', 'Washington Times', 'AFP via Yahoo! Finance', 'The Christian Science Monitor', 'Quartz', 'The Seattle Times', 'Business Insider', 'Reuters via Yahoo! News', 'Yahoo News via Yahoo Canada News', 'The Record', 'Fox News', 'The Christian Science Monitor', 'Manila Bulletin', 'The Week Magazine', 'CBC.ca', 'Daily Signal', 'Mediaite', 'Reuters via Yahoo Canada Finance', 'Morning Journal News', 'Naked Security', 'The Japan Times', 'The Daily Star', 'Venture Capital Post', 'THISDAY Live', 'The Globe and Mail (subscription)', 'Tempo', 'Wall Street Journal (blog)', 'Malaysiakini (subscription)', 'UPI.com', 'Slate.fr', 'Jerusalem Post Israel News', '13newsnow.com', 'Digital Trends', 'The Hill (blog)', 'Seattle Times', 'Reuters via Yahoo UK & Ireland News', 'Nature World News', "Barron's", 'Press TV', 'Forbes', 'The Nation - Thailand's English news', 'Washington Post', 'ITProPortal', 'Middle East Eye', 'Reuters', 'Australia Network News', 'The Conversation UK', 'Daily Sabah', 'Wall Street Journal', 'Reuters', 'Middle East Report Online', 'WWD', 'The Drive', 'NPR', 'Economic Times', 'AFP via Yahoo!7 Finance', 'Associated Press via Yahoo! News', 'The Hill', 'NPR', 'Reuters UK', 'GMA News', 'Vox', 'Forbes', 'MyStateline.com', 'The Economic Times', 'Financial Times', 'Washington Times', 'The Truro Daily News', 'Ottawa Sun', 'The Straits Times', 'Politico (blog)', 'International Business Times via Yahoo UK & Ireland News', 'AFP via Yahoo! News', 'iAfrica.com', 'Press TV', 'Shanghai Daily (subscription)', 'International Business Times via Yahoo UK & Ireland News', 'Greenfield Daily Reporter', 'TechEye', 'Daily Times', 'MarketWatch', 'BBC News', 'Reuters', 'TechEye', 'InterAksyon', 'Digital Trends via Yahoo! Sports', 'The Australian Financial Review', 'MSPoweruser.com', 'Reuters', 'Lincoln Journal Star', 'The Globe and Mail (subscription)', 'The Guardian', 'NBCNews.com', 'The Guardian', 'Corsicana Daily Sun', 'Reuters via Yahoo! Finance', 'MediaPost', 'Associated Press via Yahoo! Finance', 'Al-Arabiya', 'Nasdaq', 'Fox News Latino', 'CNN', 'Digital Trends via Yahoo! Sports', 'Brookings Institution', 'Sputnik International', 'Palestine News Network', 'Seattle Times', 'Center for Research on Globalization', 'Arab News', 'Business Wire via Yahoo! New Zealand Finance', 'NYSE Post', 'GamingBolt', 'Neurogadget', 'DailyPost Nigeria', "Investor's Business Daily", 'NewsBusters (blog)', 'Bloomberg', 'Financial Times', 'FRANCE 24', 'The Fiscal Times via Yahoo! News', 'CNET', 'Haaretz', 'Reuters', 'TASS', 'PR Newswire (press release)', 'The Indian Express', 'TIME', 'Hot Air', 'Skift', 'BBC News', 'The Globe and Mail', 'Forbes', 'Seeking Alpha', 'Vox', 'Softpedia News (blog)', 'The Nashua Telegraph', 'The Japan Times', 'BetaNews', 'Softpedia News', 'Lisbon Morning Journal', 'Bloomberg', 'New York Post', 'Blasting News', 'Time Magazine', 'New York Times', 'Arab News', 'Yahoo Finance', 'Associated Press via Yahoo! News', 'Emirates 24|7', 'Jakarta Post', 'Bangkok Post', 'WDSU New Orleans', 'Financial Times', 'MercoPress', 'Forbes', 'Eyewitness News', 'Washington Post', 'Bloomberg', 'Opposing Views', 'TASS', 'The Guardian', 'Association France Palestine Solidarit\x9d\x9d', 'The Cherokeean Herald', 'Nasdaq', 'Globalnews.ca', 'Thomson Reuters Foundation', 'The Herald', 'Windows IT Pro (blog)', 'Digital Trends via Yahoo! Sports', 'Redmondmag.com', 'Daily Mail', 'WinBeta', 'AOL News', 'Windows Central', 'Greek Reporter', 'Outer Places', 'CNET UK', 'KIMT 3', 'Los Angeles Times', 'IJ Review', 'WESH 2 Orlando', 'CNN', 'The Jewish Journal of Greater Los Angeles', 'GovConWire', 'Nature.com', 'Reuters', 'DNA India', 'Associated Press via Yahoo! Finance', 'Palestine Herald Press', 'Washington Post', 'China Daily', 'Business Standard', 'Digital Trends via Yahoo Maktoob News', 'Patheos (blog)', 'Daily Signal', 'ZDNet', 'American Action Forum (blog)', 'Reuters via Yahoo UK & Ireland News', 'AlterNet', 'Fox News', 'Reuters', 'CanadianBusiness.com', 'PC World', 'WinBeta', 'Reuters', 'Phone Arena', 'Gear Junkie (blog)', 'Gizmoids', 'MSNBC', 'Boston.com', 'The Business Times Singapore', 'Wall Street Journal', 'Forbes', 'The Hindu', 'Washington Free Beacon', 'CBS News', 'Salon', 'SiliconANGLE', 'AFP via Yahoo! India News', 'Market Realist via Yahoo Canada Finance', 'BBC News', 'Quincy Herald-Whig', 'International Business Times', 'Economic Times', 'TechTarget', 'Business Wire via Yahoo! Finance', 'IHS Electronics360', 'Northern Californian', 'Seattle Times', 'Miami Herald', 'Washington Post', 'The Verge', 'Daily Kos', 'Reuters via Yahoo! Finance', 'Moneyweb.co.za', 'The Register', 'St. Augustine Record', 'Richmond.com', 'Politico', 'Windows Central', 'Fortune', 'Shanghaiist', 'Harvard Business Review', 'Vanguard', 'China Daily', 'The Manila Times', 'Vanguard', 'Bernama', 'Seattle Times', 'TASS', 'WOWK-TV West Virginia', 'Forbes', 'The Hill', 'Reuters', 'Berwick Advertiser', 'Denver Post', 'The Hill (blog)', 'Observer', 'TheBlaze.com', 'Anadolu Agency', 'The Diplomat', 'Telegraph.co.uk', 'PJ Media', 'www.worldbulletin.net', 'Deccan Herald', 'Famagusta Gazette', 'Entrepreneur', 'ABC News', 'New York Times', 'Page Six', 'Bloomberg', 'Associated Press via Yahoo! Philippines Sports', 'CNN', 'Bloomberg', 'Eyewitness News', 'Belfast Telegraph', 'Reuters via Yahoo! Finance', 'BBC News', 'Business Standard', 'The Fresno Bee', 'Alaska Dispatch News', 'KXXV Waco', 'SlashGear', 'New York Daily News', 'Bangkok Post', 'Business Insider Australia', 'TASS', 'Toronto Sun', 'The Japan News', 'BizPac Review', 'Herald Sun', 'WND.com', 'Timaru Herald', 'RTÉ News', 'TASS', 'The Atlantic via Yahoo! News', 'Canada Free Press', 'The Christian Science Monitor', 'Investopedia', 'Computing.co.uk', 'Express.co.uk', 'Ahram Online', 'Seeker (registration) (blog)', 'International Middle East Media Center', 'AlterNet', 'Politico', 'Sarasota Herald-Tribune', 'Belfast Telegraph', 'Business Insider', 'SiliconANGLE', 'Scotsman', 'Market Realist via Yahoo! Finance', 'World Affairs (blog)', 'YourStory.com', 'Press TV', 'KTRK-TV', 'FXStreet', 'The Rock Hill Herald', 'Sky News', 'The Independent', 'Washington Times', 'CBC.ca', 'Washington Free Beacon', 'The Economic Times', 'Times of India', 'The White House', 'Fox News Latino', 'Chronicle of Philanthropy (subscription)', 'Jamaica Gleaner', 'Business Insider', 'Daily Mail', 'Business Insider via Yahoo! Finance', 'The Wall Street Journal', 'Billings Gazette', 'Los Angeles Times', 'Bloomberg', 'IANS India Private Limited/Yahoo India News via Yahoo! Singapore News', 'Voice of America', 'Business Insider Australia', 'The Washington Times', 'Salt Lake Tribune', 'AFP via Yahoo!7 News', 'TeenVogue.com', 'Seeking Alpha', 'Chicago Tribune', 'RealClearPolitics', 'Neurogadget', 'Forbes', 'The Observer-Dispatch', 'MENAFN', 'The Age', 'TheBlaze.com', 'Reuters', 'Nikkei Asian Review', 'Zacks via Yahoo! Finance', 'Jamaica Observer', 'Economic Times', 'The College Fix', 'Bloomberg', 'CIO', 'MSPoweruser.com', 'South China Morning Post (subscription)', 'The Straits Times', 'Yahoo! Maktoob News', 'BostInno', 'Middle East Eye', 'Phnom Penh Post', 'Middle East Monitor', 'TechCrunch', 'Wall Street Journal', 'Krebs on Security', 'Reuters via Yahoo Maktoob News', 'Channel News Asia', 'The Hill (blog)', 'Yahoo News', 'The Province', 'Brookings Institution', 'Wall Street Journal', 'Business Wire via Yahoo Canada Finance', 'AsiaOne', 'Slate Magazine (blog)', 'RealClearPolitics', 'The Japan Times', 'Daily Sabah', 'Wall Street Journal (blog)', 'AFP via Yahoo!7 News', 'MIS Asia', 'The Wayne Independent', 'Reuters', 'Antiwar.com', 'AFP via Yahoo! News', 'Asia Times', 'Hindu Business Line', 'Reuters', 'Business Standard India', 'PC World', 'NBCNews.com', 'Economic Times', 'NBCNews.com', 'Express.co.uk', 'New York Times', 'Al-Arabiya', 'Free Malaysia Today', 'Voice of America', 'Sputnik International', 'Albuquerque Journal', 'Calcutta Telegraph', 'Daily Maverick', 'MSPoweruser.com', 'CRN', 'MassLive.com', 'CNBC', 'Digital Trends', 'KLTV 7 Tyler', "Ward's Auto", 'HotNewHipHop', 'Wall Street Journal', 'Anderson Independent Mail', 'The Register', 'WTOP', 'The Washington Times', 'Economic Times', 'Morningstar', 'Inside Bay Area', 'TODAYonline', 'INFORUM', 'Business Insider UK', 'TheStranger.com', 'PCWorld', 'Los Angeles Times', 'Bloomberg View', 'MSNBC', 'Daily Beast', 'OUPblog (blog)', 'The Times (subscription)', 'Irish Times', 'Belfast Telegraph', 'The Register', 'GeekWire', 'TIME', 'Rappler', 'Media Matters for America', 'Washington Post', 'Brisbane Times', 'shropshirestar.com', 'MediaPost', 'Times of India', 'NEWS.com.au', 'Politico', 'People Magazine', 'Haaretz', 'TechEye', 'Washington Post', 'WPVI 6abc Philadelphia', 'V3.co.uk', 'Fortune', 'The Manila Times', 'The Globe and Mail', 'EE Times', 'Fox News', 'Eurogamer.net', 'Bloomberg', 'WAFA - Palestine News Agency', 'Livemint', 'W*USA 9', 'Associated Press via Yahoo! New Zealand Finance', 'Al-Bawaba', 'Twitchy', 'Jerusalem Post Israel News', 'Business Insider', 'WAFA - Palestine News Agency', 'Luton Today', 'Fortune', 'WND.com', 'Right Wing Watch', 'AppAdvice', 'Recode', 'CNBC', 'AFP via Yahoo! News', 'CBS Local', 'Alexandria Town Talk', 'The Next Web', 'ZDNet', 'ARNnet', 'InterAksyon', 'Syracuse.com', nan, 'Economic Times', 'Express.co.uk', 'CNN International', 'Softpedia News', 'The Press', 'USAPP American Politics and Policy (blog)', 'Bloomberg', 'Al Bawaba', 'MercoPress', 'Nikkei Asian Review', 'TechCrunch', 'Washington Post', 'RTT News', 'SC Magazine', 'Vanguard', 'Irish Independent', 'MSPoweruser.com', 'The Hill (blog)', 'U.S. News & World Report', 'Dakota Financial News', 'AAP via Yahoo!7 Finance', 'ChristianToday', 'Livemint', 'New York Times', 'NEWS.com.au', 'gulfnews.com', 'Sky News via Yahoo Canada News', 'Market Watch', 'WND.com', 'TechCrunch', 'Popular Science', 'Financial Express', 'The Hindu', 'CBC.ca', 'PhillyVoice.com', 'CryptoCoinsNews', 'The Day', 'WRAL.com', 'Palestine Herald Press', 'Computer World Australia', 'Boston.com', 'MSPoweruser.com', 'Digital Trends via Yahoo! Sports', 'Thurrott.com (blog)', 'Middle East Monitor', 'KLTV 7 Tyler', 'ABC News', 'Press of Atlantic City', 'Aljazeera.com', 'New Zealand Herald', 'Re/code', 'The Punch', 'Morning Star', 'Business Insider', 'Economic Times', 'Morning Consult', 'Slate Magazine', 'The Huffington Post', 'eNCA', 'The Forward', 'The Verge', 'MSPoweruser.com', 'WAFA - Palestine News Agency', 'teleSUR English', 'InfoWorld', 'The Verge', 'VentureBeat', 'ABC News', 'Hindu Business Line', 'Al Bawaba', 'Business Insider via Yahoo! Finance', 'Mashable', 'Brampton Guardian', 'Breitbart News', 'Boston Review', 'Reuters via Yahoo! News', 'NPR', 'TheStreet.com', 'Vox', 'ARNnet', 'Vanguard', 'New York Times', 'Chicago Tribune', 'The White House (blog)', 'Bidness ETC', 'ZDNet', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'American Thinker (blog)', 'Washington Examiner', 'Chattanooga Times Free Press', 'CNN', 'Associated Press via Yahoo! News', 'CBC.ca', 'Redmond Channel Partner', 'WND.com', 'Associated Press via Yahoo! News', 'Bloomberg', 'The Express Tribune', 'The Muslim News', 'AAP via Yahoo! New Zealand Finance', 'The Japan Times', 'Bloomberg', 'Nasdaq', 'The Intelligencer / Wheeling News-Register', 'InfoWorld', 'International Business Times via Yahoo UK & Ireland News', 'International Business Times', 'Daily News & Analysis', 'ETFinalScore.com', 'Quartz via Yahoo! Finance', 'Bangor Daily News', 'Western Journalism', 'Yahoo Finance via Yahoo! News', 'Daily News & Analysis', 'South China Morning Post (subscription)', 'London Evening Standard', 'CBC.ca', 'Economic Times', 'The Washington Times', 'Lifehacker Australia', 'MIS Asia', 'Phys.Org', 'New York Post', 'CBS News', 'CTV News', 'Boston Herald', 'Nikkei Asian Review', 'The Motley Fool', 'Forbes', 'SiliconANGLE', 'NDTV', 'Wall Street Journal (blog)', 'MarketWatch', 'The Federalist', 'TheBlaze.com', 'Clapway', 'Rappler', 'SpaceDaily', 'CIO', 'NBCNews.com', 'Twitchy', 'Business Insider via Yahoo! Finance', 'NK News', 'Financial Times', 'Android Central', 'TIME', 'Tech Times', 'EETimes', 'Wired News', 'SocialTimes', 'Ottawa Citizen', 'Forbes', 'Heavy Duty Trucking', 'Bloomberg', 'ABC News', 'Dallas Business Journal (blog)', 'AFP via Yahoo!7 Finance', 'Mother Jones', 'The Hill (blog)', 'Khaleej Times', 'Jewish Telegraphic Agency', 'APEX Media', 'The New Indian Express', 'Stuff.co.nz', 'SuperSite for Windows', 'Business Insider', 'ANTARA', 'Politico', 'Bloomberg', 'BuzzFeed News', 'Ars Technica', 'WRCB-TV', 'Neowin', 'Calgary Herald', 'USA TODAY', 'TheBlaze.com', 'International Business Times', 'RealClearPolitics', 'Tech Insider via Yahoo UK & Ireland News', 'The Seattle Times', 'GCaptain', 'CNNMoney', 'Yahoo7 News', 'American Thinker (blog)', 'Daily Mail', 'International Business Times', 'CNN', 'The Inquirer', 'Times LIVE', 'Next Big Future', 'Breitbart News', 'Morning Star Online', 'Palestine Herald Press', 'WHIO-TV 7 Dayton', 'Chronicle', 'Fortune', 'Aljazeera.com', 'Australian Business Traveller', 'EconoTimes', 'Malay Mail Online', 'Investopedia', 'Grist', 'Market Realist', 'Breitbart News', 'Independent.ae', 'MarketWatch', 'FXStreet', 'DNA India', 'ZDNet', 'Palestine Herald Press', 'BBC News', 'Reuters', 'Seeking Alpha', 'TechCrunch', 'Economic Times', 'Jakarta Post', 'Bloomberg', 'CIO', 'Fox News', 'American Thinker', 'Free Malaysia Today', 'AFP via Yahoo! News', 'SECcountry.com', 'RFI', 'The Toledo Blade', 'Ars Technica UK', 'Mondoweiss', 'Seattle Times', 'Newsweek', 'Sun Sentinel', 'CCTV-America', 'The Record', 'fox13now.com', 'RushLimbaugh.com', 'Business Insider via Yahoo! Finance', 'BBC News', 'Economic Times', 'The New Zealand Herald', 'Washington Post', 'PCGamesN', 'Power Line (blog)', 'Bloomberg', 'Reuters UK', 'Breitbart News', 'Red Deer Advocate', 'economia', 'Orlando Sentinel', 'TheBlaze.com', 'CNN Money', 'Associated Press via Yahoo! Finance', 'The Hindu', 'Reuters', 'Hot Air', 'Commentary Magazine', 'Computerworld', 'CNBCAfrica.com', 'The Guardian', 'Washington Times', 'CBC.ca', 'Windows Central', 'Times of Malta', 'Business Cloud News', 'City A.M.', 'The Manila Times', 'TheTower.org', 'Los Angeles Times', 'The Seattle Times', 'Associated Press via Yahoo!7 Finance', 'Eyewitness News', 'Reuters UK', 'CBC.ca', 'VentureBeat', 'OilPrice.com', 'RTE.ie', 'Daily Mail', 'The Independent', 'Bloomberg', 'MSPoweruser.com', 'Phone Arena', 'Softpedia News', 'SBS', 'Designboom (blog)', 'Sputnik International', 'AsiaOne', 'The Hill', 'RT', 'The Punch', 'TWC News', 'The Globe and Mail', 'Business Insider via Yahoo! Finance', 'Attack of the Fanboy', 'Project Syndicate', 'Atlanta Journal Constitution', 'AutoExpress', 'Herald Scotland', nan, 'Newsweek', 'The Hill', 'NPR', 'MassLive.com', 'PR Newswire (press release)', 'Politico', 'SiliconANGLE', 'The Guardian', 'CRN', 'The Canadian Press via Yahoo Canada News', 'Business Insider Australia', 'International Business Times via Yahoo UK & Ireland News', 'RT', 'Russian Information Agency Novosti', 'Huffington Post', 'TMZ.com', 'InformationWeek', 'Twitchy', 'Financial Market News', 'Valdosta Daily Times', 'ABC News', 'The Hill', 'Al-Monitor', 'Reuters via Yahoo! News', 'Express.co.uk', 'Data Center Knowledge', 'BBC News', 'Economic Times', 'Bloomberg', 'ValueWalk', 'MIS Asia', 'Computerworld', 'NBCNews.com', 'The Globe and Mail (subscription)', 'MarketWatch', 'Channel NewsAsia', 'Economic Times', 'Game Rant', 'Reuters via Yahoo UK & Ireland News', 'AFP via Yahoo UK & Ireland News', 'Eyewitness News', 'Sputnik International', 'Economic Times', 'NPR', 'Ynetnews', 'Deutsche Welle', 'The New Civil Rights Movement', 'Forbes', 'Al-Monitor', 'Media Matters for America (blog)', 'Irish Independent', 'Anadolu Agency', 'Vanity Fair', 'CNBC', 'Wikinews', 'TechCrunch', 'The Register', 'AFP via Yahoo! News', 'AllAfrica.com', 'The Conversation AU', 'ZDNet', 'IANS via Yahoo Maktoob News', 'teleSUR English', 'China Economic Net', 'The Australian Financial Review', 'The Guardian', 'Bloomberg', 'Jerusalem Post Israel News', 'Business Standard India', 'Al Jazeera America', 'Clapway', 'USA TODAY', 'Forbes', 'Reuters via Yahoo! Finance', 'Seeking Alpha', 'Marketwired (press release)', 'Inquirer.net', 'RT', 'Daily Caller', 'TechEye', 'Myrtle Beach Sun News', 'The Register', 'Bloomberg', 'New Zealand Herald', 'The Verge via Yahoo Canada News', 'ANI via Yahoo! India News', 'Pravda', 'Al-Monitor', 'Bloomberg via Yahoo! New Zealand Finance', 'Gawker', 'TPM', 'AFP News via Yahoo! Singapore News', 'Christian Science Monitor', 'legal Insurrection (blog)', 'The Canadian Press via Yahoo Canada News', 'ABC News', 'Brookson (press release) (blog)', 'KOCO 5 Oklahoma City', 'Haaretz', 'Bloomberg', 'ZDNet', 'Scoop.co.nz (press release)', 'Newsmax', 'Tucson News Now', 'Town Hall', 'Citizen TV (press release)', 'J Weekly', 'Us Weekly', 'Bloomberg', 'The Punch', 'Chicago Tribune', 'Douglas Budget', 'U.S. News & World Report', 'The Verge', 'Huffington Post', 'Windows Central', 'Computerworld', 'WMPoweruser.com', 'Sify News', 'ZDNet', 'Breitbart News', 'CNET', 'Reuters via Yahoo Canada News', 'We Live Security (blog)', '24/7 Wall St.', 'Yahoo News', 'AgoraVox', 'Stuff.co.nz', 'AFP via Yahoo UK & Ireland News', 'MLive.com', 'Business Insider', 'CNN', 'TheBlaze.com', 'Washington Times', 'CNBC', 'NEWS.com.au', 'National Post', 'ABC News', 'Digital Trends via Yahoo! Sports', 'Philly.com', 'CBS News', 'Fast Company', 'Environmental Data Interactive Exchange', 'EurActiv', 'ABC News', ' ', 'For The Win', 'CNN Money', 'The Local.se', 'WAPT Jackson', 'The Nation Newspaper', 'TechTarget', 'Mother Jones', 'Bankrate.com', 'The Independent', 'Yahoo Travel', 'Deutsche Welle', 'Vancouver Sun', 'TechCrunch', 'WNBA.com', 'Business Insider', 'Digital Trends via Yahoo! News', 'Al-Monitor', 'The Hill', 'Mediaite', 'Palestine Herald Press', 'The Guardian', 'Anadolu Agency', 'Korea Portal (English Edition)', 'MSPoweruser.com', 'Washington Times', 'The Canadian Press via Yahoo Canada News', 'St. Cloud Times', 'VentureBeat', 'The Washington Times', 'The Motley Fool', 'Moneycontrol.com', 'SBS', 'Washington Post', 'Bloomberg via Yahoo! Finance', 'Politico', 'Bearing Arms', 'The Guardian', 'Business Insider', 'The Globe and Mail (subscription)', 'Business Green', 'Albuquerque Journal', 'seattlepi.com', 'Kathimerini', 'Bloomberg via Yahoo! Finance', 'CNBC', 'The Trinidad Guardian', 'Redmondmag.com', 'Associated Press via Yahoo! News', 'Deadline', 'The Electronic Intifada (blog)', 'MSPoweruser.com', 'Independent Online', 'Gatestone Institute', 'Voltaire Network', 'Fox News', 'Cincinnati.com', 'Firstpost', 'One India', 'Associated Press via Yahoo! News', 'ABC News', 'Oswego Daily News', 'Upstart', 'New York Times', 'Jweekly.com', 'BuzzFeed News', 'BT.com', 'New York Times', 'EMQ', 'Mirror.co.uk', 'CTV News', 'Minneapolis Star Tribune', 'Fortune', 'Business Insider via Yahoo! Finance', 'AAP via Yahoo!7 News', 'Redmond Channel Partner', 'Xinhua', 'Financial Times', 'Bloomberg', 'ZDNet UK', '14 WFIE Evansville', 'Economic Times', 'Bloomberg', 'CNBC via Yahoo! Finance', 'Telegraph.co.uk', 'The Guardian', 'Chinapost', 'Associated Press via Yahoo! News', 'China Digital Times', 'New York Times', 'Bitbag', 'Digital Trends via Yahoo! News', 'KOCO 5 Oklahoma City', 'ITProPortal', 'Russia Beyond the Headlines', 'Mobile World Live', 'Irish Independent', 'Washington Times', 'NumbersUSA', 'Arab News', 'TheStreet.com', 'Profit Confidential', 'Digital Trends via Yahoo! News', 'Bloomberg', 'Al-Monitor', 'The Fiscal Times', 'PBS NewsHour', 'Huffington Post', 'The Wall Street Journal', 'Trades Union Congress', 'The Herald', 'Newsweek', 'New Kerala', 'Channel NewsAsia', 'Times of India', 'The Times of Israel', 'New York Post', 'SuperSite for Windows', 'AFP via Yahoo! India News', 'RealClearPolitics', 'RTT News', 'Reuters via Yahoo! Finance', 'Associated Press via Yahoo! News', 'Business Insider', 'Chicago Sun-Times', 'Telegraph.co.uk', 'The Guardian', 'Asbury Park Press', 'EuroScientist', 'The Times of India', 'The Register', 'CNN International', 'Yahoo News', 'The Times (subscription)', 'Daily Journal', 'Seattle Times', 'Business Wire via Yahoo UK & Ireland Finance', 'ABC News', 'Business Wire via Yahoo! Finance', 'Modern Distribution Management', 'AFP via Yahoo!7 News', 'Hot Air', 'Channel NewsAsia', 'TPM', 'Business Insider', 'ABC News', 'Yahoo Finance UK', 'CBS Local', 'The Interpreter', 'MarketWatch', 'CNBC', 'Palestine News Network', 'ArmyTimes.com', 'NPR', 'ARNnet', 'The Record', 'Huffington Post', 'Washington Post', 'YourStory.com', 'Egypt SIS (press release)', 'Daily Mail', 'Zap2It', 'WinBeta', 'Business Insider via Yahoo! Finance', 'International Middle East Media Center', 'euronews', 'Vanity Fair', 'AFP via Yahoo! India News', 'Arutz Sheva', 'AFP via Yahoo! News', 'News24 Nigeria', 'Washington Examiner', 'Voice of America', 'FOX Business', 'Algemeiner', 'Computerworld', 'CBS Dallas - Fort Worth', 'Intifada Palestine', 'Reuters via Yahoo! News', 'CIO', 'Forbes', 'Ghanaweb.com', 'Politico', 'Denver Post', 'Palestine News Network', 'Business Insider', 'CBC via Yahoo Canada News', 'WWAY NewsChannel 3', 'New York Times', 'Associated Press via Yahoo! News', 'Kyiv Post', 'Jerusalem Post Israel News', 'Irish Times', 'WND.com', 'CBC.ca', 'Spin', 'Breitbart News', 'MENAFN', 'ABC News', 'Times of India', 'TechRadar', 'Telegraph.co.uk', 'Boston.com', 'VentureBeat', 'ETCIO.com', 'Skift', 'Marketwired via Yahoo! Finance', 'TIME', 'The Guardian', 'Bearing Arms', 'TechCrunch', 'Thurrott.com (blog)', 'Neowin', 'WND.com', 'PC Magazine', 'News24', 'International Business Times', 'PCWorld', 'USA TODAY', 'WAFA - Palestine News Agency', 'The Canadian Press via Yahoo Canada News', 'Business Wire (press release)', 'AFP via Yahoo! News', 'CPI Financial', 'Reuters via Yahoo! Finance', 'Reuters', 'TweakTown', 'PR Newswire (press release)', 'Washington Times', 'Bloomberg', '9 to 5 Mac', 'Calgary Herald', 'The Indian Express', 'Washington Free Beacon', 'Washington Times', 'NBCNews.com', 'The Wall Street Journal', 'Washington Times', 'NBC NEWS', 'Politico (blog)', 'Small Business Trends', 'FierceMobileIT', 'Bloomberg via Yahoo! Finance', 'Nasdaq', 'Washington Times', 'SiliconANGLE', 'Reuters', 'AFP via Yahoo! India News', 'Huffington Post', 'The Australian', 'UPROXX via Yahoo! Sports', 'The Rebel', "Barron's (blog)", 'Fox News', 'Business Insider via Yahoo! Finance', 'MENAFN', 'MSPoweruser.com', 'Australia-Israel Jewish Affairs Council', 'CIWM Journal Online', 'Daily News & Analysis', '680 News', 'The Next Web', 'RealClearPolitics', 'Urgent Communications', 'Los Angeles Sun Times', 'CNN', 'BBC News', 'Daily Mail', 'The Seattle Times', 'WinBeta', 'ABC Online', 'Palestine Herald Press', 'KOMO News', 'The Hindu', 'The Sun Daily', 'Neowin', 'Vanguard', 'AFP via Yahoo! News', 'The Economist', 'NDTV', 'IGN', 'DailyNews', 'Washington Post (blog)', 'Times of India', 'ThinkProgress', 'Middle East Monitor (blog)', 'Novinite.com', 'Mondoweiss', 'The Guardian', 'Daily Mail', 'Mediaite', 'AFKInsider', 'Bedford Today', 'News24', 'Fortune', 'Market Realist via Yahoo! New Zealand Finance', 'WGN-TV', 'Bloomberg', 'Patch.com', 'Chinadaily USA', 'Vanguard', 'The Register', 'The Muslim News', 'New York Times', 'Forbes', 'expressandstar.com', 'Sydney Morning Herald', 'The Hill (blog)', 'StreetInsider.com', 'The Guardian', 'Fox 2 Detroit', 'Huffington Post', 'Breitbart News', 'Computer Weekly', 'BBC News', 'Bloomberg', 'People Magazine', 'The Federalist', 'Sky News via Yahoo Canada News', 'The Electronic Intifada (blog)', 'Antiwar.com (blog)', 'The Atlantic via Yahoo! News', 'Bloomberg View', 'BetaNews', 'Wall Street Journal (blog)', 'Financial Times', 'Forbes', 'The Sydney Morning Herald', 'Fox News', 'Hartford Courant', 'Economic Times', 'Press-Enterprise', 'The ', 'Zacks via Yahoo! Finance', 'Reuters via Yahoo! Finance', 'CNN', 'The Next Web', 'expressandstar.com', 'Daily Mail', 'Business Insider', 'Florida Times-Union', 'Financial Times', 'TIME', 'Khaleej Times', 'Forbes', 'Western Journalism', 'Associated Press via Yahoo Maktoob News', 'azcentral.com', 'Bloomberg', 'Madison.com', 'Radio Canada International', 'Digital Trends', 'Gamenguide', 'BetaNews', 'The Hill', 'PC Magazine', 'Wall Street Journal', 'Bloomberg', 'Buffalo News', 'NBC NEWS', 'CBC via Yahoo Canada News', 'Express.co.uk', 'BBC News', 'Digital Trends', 'Town Hall', 'Washington Post', 'Al-Monitor', 'CNN Money', 'MSPoweruser.com', 'Reuters', 'Mediaite', 'GeekWire', 'Huffington Post Canada', 'The Hollywood Reporter via Yahoo! News', 'Tech Insider (blog)', 'Huffington Post', 'Times Record', 'Reuters via Yahoo! News', 'The Hill (blog)', 'FXStreet', 'Japan Today', 'The Atlantic', 'BGR', 'Deutsche Welle', 'BBC News', 'Jerusalem Post Israel News', 'DNA India', 'Business Insider', 'Columbia Missourian', 'Tyler Morning Telegraph', 'Nasdaq', 'Daily Signal', 'Business Standard', 'MSPoweruser.com', 'The Independent', 'Motley Fool', 'New Zealand Herald', 'Business Insider via Yahoo! Finance', 'Washington Post', 'Benzinga', 'ABC News', 'NPR', 'Intifada Palestine', 'BetaNews', 'CBS Local', 'BDlive', 'Al-Bawaba', 'Investing.com', 'Daily News & Analysis', 'New York Post', 'The Hill', 'FOX 59 Indianapolis', 'New York Times', 'Jerusalem Post Israel News', 'NPR', 'UNM Newsroom', 'Business Recorder', 'Reuters', 'Broadcasting & Cable', 'Breitbart News', 'The Interpreter', 'Politico (blog)', 'Seeking Alpha', 'Fox News', 'New York Daily News', 'Associated Press via Yahoo! News', 'Virginian-Pilot', 'InStyle', 'The Guardian', 'ETTelecom.com', 'The Guardian', 'Reuters via Yahoo! Finance', 'CNN', 'TechRadar', 'CNBC', 'K24 TV', 'ITProPortal', 'CBS Local', 'Sputnik International', 'Washington Times', "Kuensel, Buhutan's National Newspaper", 'Reuters', 'Daily News Egypt', 'Independent Online', 'PoliticusUSA', 'The Register', 'Wall Street Journal', 'MSPoweruser.com', 'KMBC-TV Kansas City', 'Daily News & Analysis', 'Windows IT Pro', 'NPR', 'KPVI News 6', 'CNBC', 'PC Magazine', 'Sputnik International', 'BetaNews', 'Wyoming Tribune', 'Mintpress News (blog)', 'The Guardian', 'Hardcore Gamer', 'Asbury Park Press', 'Foreign Policy (blog)', 'Toronto Star', 'AFP via Yahoo! Finance', 'The Wall Street Journal', 'The Guardian', 'Oilprice.com via Yahoo! Finance', 'TPM', 'Anadolu Agency', 'People Magazine', 'Reuters', 'The Fresno Bee', 'Fox News', 'RTT News', 'New York Times', 'www.worldbulletin.net', 'Reuters via Yahoo! Finance', 'Wall Street Journal', 'Light Reading', 'Salt Lake Tribune', 'AFP via Yahoo! Finance', 'XDA Developers (blog)', 'The New Yorker', 'BuzzFeed News', 'SiliconANGLE (blog)', 'Zacks via Yahoo! Finance', 'Financial Times', 'Bernews', 'Microsoft - Channel 9', 'The Baltic Course', 'The Register', 'The Day', 'Newsweek', 'Press TV', 'New Kerala', 'Washington Post', 'Town Hall', 'Market Realist via Yahoo! Finance', 'Sydney Morning Herald', 'ABC News', 'Digital Trends', 'Bangkok Post', 'Slate Magazine', 'The Wall Street Journal', 'Detroit Free Press', 'The Courier-Journal', 'The National', 'Arutz Sheva', 'Reuters', 'The Record', 'San Francisco Sun Times', 'PanARMENIAN.Net', 'Minneapolis Star Tribune', 'Search Engine Land', 'TechCrunch', 'Tribune-Review', 'The Times (subscription)', 'EUROPP - European Politics and Policy (blog)', 'Huffington Post', 'The New Zealand Herald', 'KSLA-TV', 'Wichita Eagle', 'CNN Money', 'International Business Times', 'NBCNews.com', 'Press TV', 'Jerusalem Post Israel News', 'Bloomberg', 'AFP News via Yahoo! Singapore News', 'TechRadar', 'Wall Street Journal', 'Independent Catholic News', 'TIME', 'The Slovak Spectator', 'CIO', 'CNN', 'Wisconsin Public Radio News', 'Center for Research on Globalization', 'Bloomberg', 'International Business Times UK', 'The Weekly Standard (blog)', 'Sputnik International', 'ABC Online', 'Delimiter', 'TechTarget', 'DNA India', 'The Week UK', 'The Argus-Press', 'BBC News', 'Daily Mail', 'Marketwired via Yahoo! Finance', 'Raw Story', 'ABC News', 'Hawaii News Now', 'Market Realist via Yahoo UK & Ireland Finance', 'Reuters via Yahoo! News', 'Financial Times', 'WND.com', 'TechWeekEurope UK', 'AllAfrica.com', 'Associated Press via Yahoo! Philippines Sports', 'Reuters via Yahoo Canada News', 'economia', 'Philippine Star', 'Wall Street Journal', 'AFP via Yahoo! News', 'Democracy Now!', 'Reuters UK', 'VentureBeat', 'USA TODAY', 'Business Insider', 'Palestine News Network', 'ZDNet', 'National Review Online', 'The Canadian Press via Yahoo Canada News', 'Sky News', 'TechNewsWorld', 'Equities.com', "Barron's", 'Seeking Alpha', 'Pakistan Observer', 'CNBC', 'EconoTimes', 'Chattanooga Times Free Press', 'CBS News', 'NBCNews.com', 'Neowin', 'TIME', 'Daily Mail', 'hellomagazine.com', 'Manawatu Standard', 'Scoop.co.nz (press release)', 'Manila Bulletin', 'Fortune', 'WIRED', 'NPR', 'The Detroit News', 'The Baltic Course', 'Tyler Morning Telegraph', 'Gizmag', 'The Economist', 'FM World', 'Huffington Post', 'CNBC', 'San Francisco Chronicle', 'MIS Asia', 'Business Insider via Yahoo! India News', 'Wall Street Journal', 'Globalnews.ca', 'WebProNews', 'International Business Times via Yahoo UK & Ireland News', 'Fortune', 'MSPoweruser.com', 'The Independent', 'Association France Palestine Solidarit\x9d\x9d', 'MarketWatch', 'Inhabitat', 'Ars Technica', 'Intifada Palestine', 'Seattle Times', 'NBC New York', 'The Week Magazine', 'The Hill', 'Reuters', 'Politico', 'The Hindu', 'The Truro Daily News', 'The Guardian Nigeria (satire) (press release) (blog)', 'Greenfield Daily Reporter', 'U.S. News & World Report', 'TechEye', 'VentureBeat', 'Mashable', 'Anime News Network', 'CBC.ca', 'Arutz Sheva', 'TechRepublic', 'Yahoo News', 'RT', 'Sault Ste. Marie Evening News', 'Grand Junction Daily Sentinel', 'The Detroit News', 'Nehanda Radio', 'CBS News', 'Reuters', 'NJ.com', 'Committee for Accuracy in Middle East Reporting in America (blog)', 'Accuracy In Media', 'Lifesite', 'Economic Times', 'The Detroit News', 'Daily Mail', 'Market Watch', 'PC World', 'ABC News', 'euronews', 'CNBC', 'The Standard Digital News (press release) (blog)', 'AFP via Yahoo! India News', 'The Hindu', 'Vancouver Sun', 'Outlook India', ' ', 'Attack of the Fanboy', 'BBC News', 'Center for Research on Globalization', 'Quartz', 'Exchange Rates UK', 'PC World', 'Washington Post', 'AFP via Yahoo! Finance', 'Forbes', 'Daily Sabah', 'Phys.Org', 'The Columbian', 'Reuters via Yahoo! Finance', 'FOX Business', 'Reuters UK', 'Seeking Alpha', 'AllAfrica.com', 'PJ Media', 'Bloomberg', 'The Federalist', 'New York Magazine', 'Voice of America', 'Daily Star Gazette', 'Jamaica Observer', 'Daily Signal', 'Reuters', 'Bloomberg', 'WTOP', 'Reuters', 'Big News Network.com', 'UPI.com', 'Tech2', 'Amigobulls', 'International Business Times', 'Scoop.co.nz (press release)', 'WND.com', 'RTE.ie', 'The Hill (blog)', 'FRANCE 24', 'Engadget', 'Washington Post', 'Haitilibre.com', 'Belfast Telegraph', 'Reuters', 'Black Enterprise', 'InfoQ.com', "Investor's Business Daily", 'The Moscow Times (registration)', 'Wired News', 'Business Wire via Yahoo! Finance', 'CNN Money', 'AFP via Yahoo! India News', 'Washington Post', 'consortiumnews.com', 'TheBlaze.com', 'New York Times', 'YLE News', 'Computerworld', 'New York Times', 'International Business Times via Yahoo UK & Ireland News', 'The Australian Financial Review', 'Bloomberg', 'UC Merced University News', 'New York Times', 'Palestine Herald Press', 'TODAYonline', 'Windows Central', 'Eyewitness News', 'The Jewish Press', 'Washington Times', 'Neowin', 'CNBC', 'The Wall Street Journal', 'Market Realist via Yahoo! Finance', 'The Cheat Sheet', 'Market Realist', 'Memeburn', 'Huffington Post', 'Belfast Telegraph', 'Business Wire via Yahoo Canada Finance', 'Irish Examiner', 'United Nations', 'Bloomberg', 'Los Angeles Times', 'CRIENGLISH.com', 'CBS News', 'BusinessDesk via Yahoo! New Zealand Finance', 'Business Insider', 'International Middle East Media Center', 'Huffington Post Canada', 'Bloomberg', 'Neowin', 'Jerusalem Post Israel News', 'Breitbart News', 'Seeking Alpha', 'AlterNet', 'The Guardian', 'The Japan Times', 'Nasdaq', 'Philly.com', 'Accuracy in Academia', 'Reuters via Yahoo! Finance', 'Deutsche Welle', 'Fox News', 'Huffington Post', 'The Indian Express via Yahoo! India News', 'Forbes', 'Bloomberg', 'Bloomberg via Yahoo! Finance', 'Washington Post', 'Times of India (blog)', 'SuperSite for Windows', 'Telegraph.co.uk', 'Reason (blog)', 'USA TODAY', 'Android Community', 'The Hill', 'TASS', 'Benzinga via Yahoo! Finance', 'Al-Monitor', 'Business Insider', 'AAP via Yahoo!7 Finance', 'VRFocus', 'Philadelphia Business Journal', 'A.V. Club', 'Columbus Dispatch (blog)', 'ABC News', 'Denver Post', 'CIO', 'The Hill (blog)', 'Voice of America', 'Irish Times', 'Inside Edition', 'Glenwood Springs Post Independent', 'The Canadian Press via Yahoo Canada News', 'MSNBC', 'MSPoweruser.com', 'The Star', 'Middle East Monitor', 'FrontPage Magazine', 'Vanguard', 'AFP via Yahoo! India News', 'Vanguard', 'Daily Mail', 'Digital Trends via Yahoo! Sports', 'Common Dreams (press release)', 'Business Insider', 'The Wall Street Journal', 'newsBTC', 'WECT 6 Wilmington', 'MSPoweruser.com', 'Profit Confidential', 'Orlando Sentinel', 'Forbes', 'SuperSite for Windows', 'PBS NewsHour', 'SlashGear', 'CBS Local', 'Yahoo News', 'The White House (blog)', 'Stuff', 'Lexington Herald-Leader', 'MSPoweruser.com', 'The Register', 'Independent Online', 'MakeUseOf', 'Colombia Reports', 'Citizen', 'DailyPost Nigeria', 'The Globe and Mail', 'Fusion', 'The Hill', 'Sun-Sentinel', 'GlobeNewswire via Yahoo!7 Finance', 'International Business Times', 'ABC News', 'RealClearPolitics', 'InfoWorld', 'Bloomberg', 'Times of India', 'HardOCP (press release)', 'NBCNews.com', 'Bullard Banner News', 'Phys.Org', 'Local 6 Orlando', 'WGAL 8 Susquehanna Valley', 'The Inquisitr', 'IBNLive', 'Blorge', 'Intifada Palestine', 'Bloomberg', 'RealClearPolitics', 'Sputnik International', 'The Hill', 'Reuters via Yahoo! News', 'CBS Local', 'Al Jazeera via Yahoo UK & Ireland News', 'Center for Research on Globalization', 'Nature.com', 'U.S. News & World Report', 'Bunbury Mail', 'Bloomberg', 'New York Times', 'Intifada Palestine', 'RT', 'Firstpost', 'People Magazine', 'Gizmodo Australia', 'The Press', 'Twitchy', 'The Hill', 'Bloomberg via Yahoo!7 Finance', 'Reuters', 'CBS News', 'The Sun', 'BBC News', 'TheBlaze.com', 'Cornell Chronicle', 'CNBC', "Slugger O'Toole", 'Bloomberg', 'Business Recorder', 'InformationWeek', 'Tablet Magazine', 'Bernama', 'Hot Hardware', 'USA TODAY', 'MSPoweruser.com', 'Washington Times', 'Middle East Report Online', 'The Washington Times', 'The Fiscal Times via Yahoo! News', 'Associated Press via Yahoo! Singapore Sports', 'AFP via Yahoo! News', 'The Daily Star', 'Reuters', 'Sputnik International', 'ETCIO.com', 'VentureBeat', 'Telegraph.co.uk', 'CBC.ca', 'AFP via Yahoo! News', 'Economic Times', 'The Rock Hill Herald', 'Huffington Post', 'The Drum', 'Reuters via Yahoo! Sports', 'Gizmodo', 'Huffington Post', 'Digital Trends via Yahoo! Sports', 'Channel NewsAsia', 'The Youngstown Vindicator', 'OilPrice.com', 'PJ Media', 'The Seattle Times', 'Mac Rumors', 'ABC News via Yahoo! News', 'CNBC', 'The Art Newspaper', 'Stuff', 'Haaretz', 'WinBeta', 'KERA North Texas', 'The Times (subscription)', 'Financial Times', 'Channel News Asia', 'The Morganton News Herald', 'Reuters via Yahoo! News', 'Digital Trends via Yahoo! Sports', 'The Next Web', 'MSPoweruser.com', "Barron's (blog)", 'Motley Fool', 'Mediaite', 'Media Matters for America', 'CNNMoney', 'Market Watch', 'SuperSite for Windows', 'CounterPunch', 'Christian Science Monitor', 'Detroit Free Press', 'gulfnews.com', 'PoliticusUSA', 'ENPI Info Centre', 'CBC.ca', 'InvestorIdeas.com (press release)', 'Reuters via Yahoo! News', 'International Business Times via Yahoo UK & Ireland News', 'EurActiv', 'Business Wire (press release)', 'FOX43.com', 'WinBeta', 'Jerusalem Post Israel News', 'FOX Business', 'LawNewz', 'The Inquirer', 'CBS News', 'CNBC', 'Reuters UK', 'Fortune', 'Komando', 'ITworld', 'Thurrott.com (blog)', 'CNW Group via Yahoo Canada Finance', 'Billboard', 'Boulder Daily Camera', 'Co.Design (blog)', 'The Washington Times', 'Morningstar.com', 'TIME', 'Quincy Herald-Whig', 'Washington Times', 'Technology Personalized', 'Minneapolis-St. Paul Star Tribune', 'Irish Independent', 'PolitiFact', 'Quincy Herald-Whig', 'WCCFtech', 'NewsDay', 'New York Times', 'Business Insider via Yahoo Maktoob News', 'Rudaw', 'The Next Web', 'The Guardian', 'Toronto Star', 'Washington Post', 'Nasdaq', 'The Register', 'The National Interest Online', 'DailyFinance', 'Variety', 'ZDNet', 'The Hill (blog)', 'Sky News', 'EE Times Asia', 'Reuters', 'Windows Central', 'Kuwait News Agency', 'ABC News', 'International Business Times', 'CNN', 'Quartz', 'Boing Boing', 'Foreign Policy (blog)', 'SNAPPA Technology via Yahoo UK & Ireland News', 'ITworld', 'Business Insider', 'TIME', 'NAIJ.COM', 'American Enterprise Institute', 'PC World', 'Variety', 'Wonkette (satire) (blog)', 'Yahoo News UK', 'CNN', 'KXXV Waco', 'The Fiscal Times', 'The Register', 'CIO', 'CBC.ca', 'Market Watch', 'Washington Post', 'Washington Post', 'Toronto Sun', 'Associated Press via Yahoo! Finance', 'Denver Post', 'WGN-TV', 'The Verge', 'Business Insider', 'Open Democracy', 'Billings Gazette', 'Washington Times', 'The Korea Herald', 'YorkRegion.com', 'Financial Express', 'Telecom Reseller (press release)', 'Fortune', 'BBC News', 'Digital Trends via Yahoo! Sports', 'Daily News & Analysis', 'Vocativ', 'Minneapolis-St. Paul Star Tribune', 'Bitcoinist.net', 'Artslink.co.za News (press release)', 'Business Insider', 'Town Hall', 'Reuters via Yahoo! Sports', 'NewsBusters (blog)', 'Reuters', 'Bloomberg', 'Post Online (blog)', 'Profit Confidential', 'International Business Times UK', 'Phone Arena', 'Associated Press via Yahoo! News', 'groovyPost', 'Ministry of Foreign Affairs of Denmark', 'EurActiv', 'CNN Money', 'Washington Post', 'Breitbart News', 'Associated Press via Yahoo! News', 'CIO', 'Democracy Now!', 'MSPoweruser.com', 'Daily Mail', 'STLtoday.com', 'UT The Daily Texan', 'MIS Asia', 'The Australian', 'ScienceBlog.com (blog)', 'NBC 5 Dallas-Fort Worth', 'The White House (blog)', 'Reuters via Yahoo UK & Ireland News', 'GenomeWeb', 'KLTV 7 Tyler', 'CounterPunch', 'CBS Local', 'Market Realist via Yahoo! Finance', 'Media Matters for America', 'Times Daily', 'CNET', 'Advisor.ca', 'AFP via Yahoo! Finance', 'The Canadian Press via Yahoo Canada News', 'Bloomberg', 'TPM', 'Tehran Times', 'Nine O'Clock', 'Daily Mail', 'Redmondmag.com', 'Mondoweiss', 'NDTV', 'Associated Press via Yahoo! Singapore Sports', 'Nehanda Radio', 'Hong Kong Standard (press release)', 'PoliticusUSA', 'CNN', 'Reuters', 'GOOD Magazine', 'Mondoweiss', 'The Hill', 'Reuters via Yahoo! News', 'Jakarta Post', 'Nasdaq', 'Shanghai Daily (subscription)', 'Yahoo Finance', 'People Magazine', 'MSNBC', 'Shanghai Daily (subscription)', 'Anadolu Agency', 'AAP via Yahoo! New Zealand Finance', 'National Turk English', 'Pulse.com.gh', 'TASS', 'Associated Press via Yahoo! Singapore Sports', 'Free Malaysia Today', 'Hanford Sentinel', 'Financial Times', 'Business Insider', 'The Hindu', 'The Daily Advertiser', 'Forward', 'WTOP', 'Mehr News Agency - English Version', 'New York Post', 'The Inquisitr', 'ARNnet', 'Fortune', 'Reuters', 'InterAksyon', 'Taipei Times', 'KOCO 5 Oklahoma City', 'Economic Times', 'WABC-TV', 'Toronto Star', 'Huffington Post', 'USA TODAY', 'Refinery29', 'New York Times', 'Quartz', 'YugaTech', 'Entrepreneur', 'ABC News', 'snopes.com', 'Associated Press via Yahoo! Finance', 'Deseret News', 'Daily Star Gazette', 'ABC News', 'Yahoo Politics', 'CBC.ca', 'BBC world', 'The Wall Street Journal', 'AFP via Yahoo! News', 'Reuters via Yahoo! Singapore News', 'Bloomberg', 'teleSUR English', 'The ', 'Financial Times', 'Business Insider Australia', 'Wall Street Journal Blogs', 'gulfnews.com', 'RTT News', 'Wall Street Journal', 'The Washington Times', 'AFP News via Yahoo! Philippines News', 'BusinessDay', 'Newsday', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'Huffington Post', 'The Christian Science Monitor', 'Phone Arena', 'New York Times', 'Digital Trends via Yahoo! Sports', 'CNNMoney', 'SiliconANGLE', 'The Guardian', 'Gawker', 'CNBC via Yahoo! Finance India', 'Outlook India', 'GeekWire', 'Asian Tribune', 'Business Insider via Yahoo! Finance', 'The Herald', 'Washington Free Beacon', 'The Independent', 'Bloomberg', '24/7 Wall St. via Yahoo! Finance', 'WinBeta', 'PC World', 'Huffington Post', 'CNBC via Yahoo! Finance', 'BBC News', 'The Hill (blog)', 'Tech Times', 'MENAFN', 'Jerusalem Post Israel News', 'The Houma Courier', 'Philippine Star via Yahoo! Philippines News', 'Salon', 'Business Insider', 'eWeek', 'Business Wire via Yahoo Canada Finance', 'GCN.com', 'Ars Technica', 'VentureBeat', 'ZDNet', 'Wall Street Journal', 'Aberdeen Press and Journal', 'Bloomberg', 'azcentral.com', 'Telecompaper (subscription)', 'New York Daily News', 'The Guardian', 'Washington Post', 'Tyler Morning Telegraph', 'Salon', 'Inside Higher Ed', 'Jordan Times', 'Scoop.co.nz', 'U.S. News & World Report', 'The Hill', 'Voice of America', 'The New Yorker (satire)', 'Business Insider UK', 'Slate Magazine (blog)', 'The Desert Sun', 'The Independent', 'IT Business Edge (blog)', 'The Australian', 'NBCNews.com', 'Huffington Post', 'Firstpost', 'Fudzilla (blog)', 'Business Recorder', 'TASS', 'Wall Street Journal (blog)', 'Winnipeg Free Press', 'Nasdaq', 'Reuters via Yahoo! Finance', 'Market Realist via Yahoo Canada Finance', 'The Hill', 'Your Middle East', 'ABC News', 'Bloomberg', 'Scottish Housing News', 'Sydney Morning Herald', 'WinBeta', 'The Siasat Daily', 'The Verge', 'Spectator.co.uk (blog)', 'SCOTUSblog (blog)', nan, 'Town Hall', 'New Republic', 'Essence.com', 'PR Newswire (press release)', 'Fox News', 'Patch.com', 'Entertainment Weekly', 'Telegraph.co.uk', 'Daiji World', 'The Federalist', 'USA TODAY', 'FXStreet', 'CCTV-America', 'The Independent', 'PC World', 'Quartz', 'Independent Australia', 'Business Insider via Yahoo UK & Ireland Finance', 'ABC NEWS 4', 'CNN.com', 'The Nation - Thailand's English news', 'GamesRadar (blog)', 'InfoWorld', 'Heavy Duty Trucking', 'Politico', 'RealClearPolitics', 'Times Record News', 'The Guardian Nigeria (satire) (press release) (blog)', 'The Hill', 'Boston Herald', 'NBCNews.com', 'People Magazine', 'Reuters UK', 'IANS India Private Limited via Yahoo! Singapore News', 'TechRadar', 'U.S. News & World Report', 'Daily Mail', 'Express.co.uk', 'Business Insider', 'Palestine Herald Press', 'New York Times', 'Reuters', 'Tech Times', 'Malay Mail Online', 'Bloomberg', 'Associated Press via Yahoo! Singapore News', 'Nikkei Asian Review', 'San Francisco Business Times (blog)', 'AllAfrica.com', 'Southeast Texas Record', 'Daily News & Analysis', 'Reuters via Yahoo! News', 'The Globe and Mail (subscription)', 'World Bank Group (blog)', 'Bloomberg', 'Tech Times', 'Treehugger', 'WAFF', 'The Wall Street Journal', 'Market Watch', 'Reuters Middle East via Yahoo Maktoob News', 'Phandroid.com', 'Forbes', 'Newsmax', 'The Verge via Yahoo! News', 'Forbes', 'NBC 5 Dallas-Fort Worth', 'BDlive', 'Reuters', 'Channel News Asia', 'WQAD.com', 'Engadget', 'New Hampshire Public Radio', 'InfoWorld', 'The Guardian', 'Daily Caller', 'WAFA - Palestine News Agency', 'Breitbart News', 'Gotta Be Mobile', 'Inverse', 'CNN Money', 'Nasdaq', 'Bangor Daily News', 'Washington Post', 'Phys.Org', "Alabama's News Leader", 'Armenpress.am', 'Wall Street Journal', 'Forbes', 'WMPoweruser.com', 'Nasdaq', 'IANS via Yahoo Maktoob News', 'BDlive', 'Android Police', 'WinBeta', 'New York Times', 'The Guardian', 'Wall Street Journal', 'WTSP.com', 'KSL.com', 'BizPac Review', 'The Guardian', 'Tulsa World', 'TheBlaze.com', 'Wall Street Journal', 'The Spokesman-Review', 'Outlook India', 'ABC News', 'CNN', 'Breitbart News', 'groovyPost', 'PBS NewsHour', 'Forbes', 'KGOU', 'Channelnomics EU (registration)', 'Reuters', 'Business Wire via Yahoo UK & Ireland Finance', 'WND.com', 'Reuters via Yahoo! News', 'CBS News', "Investor's Business Daily", 'Motley Fool', 'Anchorage Daily News', 'www.worldbulletin.net', 'AllAfrica.com', 'Sky News via Yahoo UK & Ireland Finance', 'Business Insider UK', 'Bloomberg', 'Computerworld', 'The Nation.', 'CBC.ca', 'bnn.ca', 'Reuters via Yahoo! Sports', 'ZDNet', 'The Hill', 'Logistics Management', 'Channel NewsAsia', 'Huffington Post', 'Business Insider via Yahoo UK & Ireland Finance', 'The Washington Times', 'Washington Post', 'CTV Montreal News', 'Entertainment Weekly', 'Forbes', 'Bloomberg', 'ABC News', 'VOA Ting Vit', 'Reuters UK', 'CBS Local', 'SuperSite for Windows', 'VICE News', 'Times Higher Education (THE)', 'Middle East Monitor', 'IGN', 'The Borneo Post', 'The Guardian', 'Mondoweiss', 'Calgary Sun', 'Tampabay.com (blog)', 'The Indian Express', 'FXStreet', 'Reuters', 'Globes', 'White House Dossier', 'Builder Magazine', 'Buenos Aires Herald', 'Christian Science Monitor via Yahoo UK & Ireland News', 'Business Insider via Yahoo! Finance', 'EE Times', 'The Hill', 'Washington Times', 'Neowin', 'Franklin Independent', 'USA TODAY', 'TechRadar', 'ReadWrite', 'Milwaukee Business Journal', 'Alabama NewsCenter', 'AFP via Yahoo! India News', 'Mother Jones', 'Reuters', 'CBS News', 'Equities.com', 'The Star', 'Phone Scoop', 'CNBC', 'Middle East Online', 'AFP via Yahoo! News', 'International Business Times, India Edition', 'USA TODAY', 'CoAssets via Yahoo! Singapore News', 'Vox', 'TrustedReviews', 'Mashable', 'The National', 'International Business Times', 'Marketplace.org', 'BBC News', 'Engadget', 'Reuters via Yahoo!7 Finance', nan, 'ABC News', 'Jerusalem Post Israel News', 'Irish Times', 'Huffington Post Australia', 'Daily Caller', 'Reuters UK', 'Canada Free Press', 'WND.com', 'Wall Street Journal', 'Network World', 'Laptop Mag', 'Business Insider via Yahoo! Finance', 'Nasdaq', 'Times of India', 'Bloomberg', 'NPR', 'Daily Caller', 'NJ.com', 'Wall Street Journal (blog)', 'Inquirer.net', 'Chandigarh Tribune', 'Breitbart News', 'CNN', 'The Guardian', 'New Straits Times Online', 'Voice of America', 'Softpedia News', 'Newshub', 'PC Magazine', 'Digital Trends via Yahoo! News', 'Chicago Daily Herald', 'Middle East Monitor', 'ABC News', 'International Business Times', 'CNN', 'New York Times', 'Business Wire via Yahoo UK & Ireland Finance', 'Daily Caller', 'Al Bawaba', 'RT', 'AngolaPress', 'Business Wire (press release)', 'Arab News via Yahoo Maktoob News', 'ForexLive', 'Wall Street Journal', 'Palestine Herald Press', 'PR Newswire via Yahoo! Finance', 'FOX40 Sacramento', 'Softpedia News', 'The Business Times Singapore', 'Quartz', 'Hellenic Shipping News Worldwide', 'CNBC', 'The Guardian', 'International Business Times via Yahoo UK & Ireland News', 'The Wall Street Journal', 'Sputnik International', 'Computerworld', 'CNN', 'IANS via Yahoo Maktoob News', "Today's Zaman", 'Economic Times', 'Livemint', 'Jerusalem Post Israel News', 'Foreign Policy (blog)', 'Washington Examiner', 'euronews', 'Daily Caller', 'TechRadar', 'Irish Independent', 'Washington Post', 'Washington Times', 'Firstpost', 'Business Insider', 'WVTM13', 'Business Wire (press release)', 'CCTV', 'Tucson News Now', 'Inquirer', 'Reuters via Yahoo! News', 'CNN Money', 'AFP via Yahoo! News', 'The Globe and Mail (subscription)', 'VentureBeat', 'Watchdog.org', 'Phone Arena', 'The Hindu', 'Benzinga', 'ITV.com', 'Economic Times', 'Daily Caller', 'ABC News via Yahoo! News', 'The Express Tribune', 'Lisbon Morning Journal', 'Fox 28', 'MSNBC', 'Havana Times', 'CNET via Yahoo! News', 'Money News (press release)', 'PBS NewsHour', "Crain's Detroit Business", 'Fox News', 'Bloomberg via Yahoo! Finance', 'Ghacks Technology News', 'The Canadian Press via Yahoo Canada Finance', 'The Hill (blog)', 'Channel NewsAsia', 'Irish Examiner', 'Redmondmag.com (blog)', 'The Philadelphia Inquirer', 'Arutz Sheva', 'The Manila Times', 'PC World', 'TechEye', 'Reuters', 'The New Yorker', 'Ruidoso News', 'Business.com', 'Marketwired (press release)', 'Wall Street Journal', 'Palestine News Network', 'Mashable', 'ABC Online', 'New York Post', 'The Register', 'Reuters', 'iTech Post', 'POPSUGAR', 'Washington Post', 'Fortune', 'UTV Ireland', 'NewsDay', 'ABC News', 'Livemint', 'Sify News', 'The Hindu', 'TPM', 'CNET', 'Reuters via Yahoo! India News', 'Daily Beast', 'NCAA.com', 'News4C', 'ZDNet', 'The Register', 'Jerusalem Post Israel News', 'ABC News', 'Town Hall', 'FOX 5 San Diego', 'euronews', 'New York Post', 'Shanghai Daily (subscription)', 'Newsmax', 'NDTV', 'Washington Post', 'ForexLive', 'Belfast Telegraph', 'ABC News', 'Reuters UK', 'News One', 'New York Times', 'WAFA - Palestine News Agency', 'The Washington Times', 'The Guardian', 'The Hill', 'Scoop.co.nz (press release)', 'Investorplace.com', 'The Guardian', 'Boston Herald', 'MSPoweruser.com', 'International Business Times', 'Bloomberg', 'Forbes', 'Politico', 'Macleans.ca', 'Yahoo Finance', 'The Korea Observer', 'PCWorld', 'The Seattle Times', 'Trinidad Guardian', 'AFP via Yahoo! News', 'HowStuffWorks NOW', 'Green Car Reports', 'eWeek', 'Puget Sound Business Journal (Seattle) (blog)', 'Inc.com', 'CBC.ca', 'Engadget', 'Daily Signal', 'The Independent', 'FOX Business', 'The Next Web', 'Twitchy', 'Business Insider', 'Daily Mail', 'Daily Sabah', 'Politico', 'Minnesota Public Radio News', 'TWC News', 'Stock & Land', 'The ', 'Co.Exist', 'Computerworld', 'Hot Air', 'USA TODAY', 'The Arab Daily News', 'Tech Times', 'The Hill (blog)', 'Bloomberg', 'Herald & Review', 'Windows Central', 'EventHubs', 'Newsweek', 'Firstpost', 'Seeking Alpha', 'The National Interest Online', 'ABC News', 'KABC-TV Los Angeles', 'VentureBeat', 'The Globe and Mail', 'PR Newswire (press release)', 'RenewEconomy', 'PoliticusUSA', 'The Globe and Mail', 'TIME', 'Grand Rapids Herald-Review', 'ABC News', 'Channel News Asia', 'The Electronic Intifada (blog)', 'The National', 'Intifada Palestine', 'Caribbean360.com (subscription)', 'Market Realist via Yahoo! Finance', 'MENAFN', 'KLTV 7 Tyler', 'Associated Press via Yahoo! News', 'The Star', 'Killeen Daily Herald', 'legal Insurrection (blog)', 'Associated Press via Yahoo! Singapore Sports', 'KWQC-TV6', 'Polygon', 'The Hill', 'Chip Chick', 'London Free Press', 'Associated Press via Yahoo UK & Ireland Finance', 'Reason (blog)', 'United Nations', 'ProPublica', 'New York Post', 'ABC News', 'Luxury Daily', 'Forbes', 'WDSU New Orleans', 'The Week Magazine', 'Washington Post', 'The Canadian Press via Yahoo Canada News', 'The Guardian', 'TASS', 'Palestine Herald Press', 'FOX 12 Oregon', 'Fortune', 'New Scientist', 'VICE News', 'NPR', 'NJ.com', 'BBC News', 'The Guardian', 'Breitbart News', 'Washington Post', 'CNN.com', 'New York Times', 'FOX43.com', 'The Week Magazine', 'The Hill (blog)', 'Huffington Post Canada', 'Popular Science', 'The Intercept', 'Savannah Morning News', 'Associated Press via Yahoo! News', 'AllAfrica.com', 'Industry Leaders Magazine', 'Lakeshore Public Media', 'Phone Arena', 'StreetInsider.com', 'Reuters via Yahoo! New Zealand News', 'Daily Mail', 'Washington Times', 'Newsmax', 'Business Insider via Yahoo Maktoob News', 'Sputnik International', 'KYMA', 'MENAFN', 'Game Rant', 'FXStreet', 'CNBC', 'AllAfrica.com', 'TechCrunch', 'Irish Times', 'The Hill', 'BGR News via Yahoo! News', 'CNN', 'ThinkProgress', 'The Verge', 'Associated Press via Yahoo! News', 'TPM', 'The Wire', 'Huffington Post', 'The Columbian', 'Associated Press via Yahoo! News', 'The Guardian', 'Reuters via Yahoo! News', 'NDTV', 'TechCrunch', 'The Guardian Nigeria (satire) (press release) (blog)', 'GameSpot', 'Washington Post (blog)', 'Huffington Post', 'The Korea Herald', 'The Straits Times', 'Business Wire via Yahoo! Finance', 'South China Morning Post (registration)', 'Al-Fanar Media', 'PR Newswire (press release)', 'The Independent', 'Businessinsider India', 'The Hill (blog)', 'Reuters', 'News Every day', 'Wall Street Journal (blog)', 'Financial Times', 'ZDNet', 'SBS', 'Forbes', 'FOX 4 Kansas City', 'The Register', 'ABC News', 'WFMJ', 'ZDNet', 'My Twin Tiers.com', 'ChronicleLive', 'MarketWatch', 'American Thinker (blog)', 'The Washington Times', 'FOX Business', 'Tufts Daily', 'Forbes', 'American Enterprise Institute', 'Mediaite', 'TechRadar', 'The Verge', 'CNN', 'CNBC', 'Wall Street Journal', 'Bangkok Post', 'Emirates 24|7', 'Stars and Stripes', 'The Express Tribune', 'Reuters', 'Reuters', 'Stuff.co.nz', 'The Canadian Press via Yahoo Canada News', 'Reuters via Yahoo Maktoob News', 'Reuters', 'InformationWeek', 'WMPoweruser.com', 'Fast Company', 'Newsweek', 'The Verge', 'TIME', 'Market Realist', 'Washington Post', 'Reuters', 'KPBS San Diego', 'Wall Street Journal', 'BREATHEcast', 'Hawaii News Now', 'Inquirer.net', 'Computerworld', 'Contra Costa Times', 'Sputnik International', 'TechTarget', 'Indo American News', 'Washington Times', 'Tech Insider via Yahoo UK & Ireland News', 'Slate Magazine (blog)', 'Motley Fool', 'Reuters', 'AFP via Yahoo! India News', 'WinBeta', 'Breitbart News', 'KING5.com', 'Business Wire via Yahoo! Finance', 'V3.co.uk', 'Jerusalem Post Israel News', 'Haaretz', 'Business Insider', 'Sun Sentinel', 'Arab News', 'CTV.ca', 'Reuters via Yahoo! Finance', 'Daily Mail', 'MENAFN', 'San Angelo Standard Times', 'Newsmax', 'ZDNet', 'EMQ', 'AFP News via Yahoo! Singapore News', 'PC World', 'ZDNet UK', 'Daily Times Nigeria', nan, 'WinBeta', 'CNBC', 'South China Morning Post', 'Business Insider', 'ABC News', 'ABC News', 'The Star', 'The Hill (blog)', 'New York Post', 'PoliticsHome.com', 'Town Hall', 'Washington Post', 'Palestine Herald Press', 'www.worldbulletin.net', 'AAP via Yahoo!7 Finance', 'Bloomberg', 'Independent Reporter', 'Siliconera', 'News24 Nigeria', 'TechCrunch', 'Forbes', 'CounterPunch', 'Leader-Telegram', 'Shreveport Times', 'MIS Asia', 'Intifada Palestine', 'Washington Post', 'National Post', 'Free Malaysia Today', 'Daily Signal', 'The Hill', 'SC Magazine', 'Sky News via Yahoo UK & Ireland News', 'MobiPicker', 'Vanguard', 'Washington Free Beacon', 'Good Morning America via Yahoo! News', 'MyStatesman.com', ' ', 'Huffington Post', 'ABC Online', 'Voice of America (blog)', 'The Malaysian Insider via Yahoo! Singapore News', 'International Business Times UK', 'WinBeta', 'The Times of Israel', 'GamingBolt', 'The Next Web', 'ABC News', 'Fast Company', 'Marketwire', 'TechRepublic', 'Fortune', nan, 'Associated Press of Pakistan', 'Fox News', 'Market Watch', 'Washington Post', 'The Desert Sun', 'Chicago Tribune', 'SlashGear', 'Sydney Morning Herald', 'AAP via Yahoo!7 Finance', 'Business Insider via Yahoo! Finance', 'Businessinsider India', 'Fox News', 'The Washington Times', 'Reuters', 'Small Business Times', 'New York Daily News', 'PoliticusUSA', 'South African Broadcasting Corporation', 'Middle East Eye', 'CNN Money', 'International Business Times', 'International Business Times UK', 'Forbes', 'Associated Press via Yahoo! Singapore Sports', 'The Punch', 'Yahoo Finance', 'The Hill (blog)', 'InfoWorld', 'Yahoo7 News', 'Palestine Herald Press', 'AFP via Yahoo! News', 'Computer World Australia', 'Bloomberg', 'CIO Today', 'CIO', 'Associated Press via Yahoo! News', 'The Hill', 'Los Angeles Times', 'Pulse Nigeria', 'Washington Post', 'The Australian Financial Review', 'Goal.com', 'eWeek', 'Tech Times', 'RenewEconomy', 'Milpitas Post', 'RT', 'CNN International', 'Fortune', 'Power Line (blog)', 'The Associated Press via Yahoo! Sports', 'NJ.com', 'Politico', 'Financial Times', 'Forbes', 'ABC News', 'The Canadian Press via Yahoo Canada News', 'Trinidad Guardian', 'Business Insider', 'Hawaii News Now', 'AFP Relax via Yahoo! Singapore News', 'The Conversation US', 'PlantAutomation.com', 'BusinessWorld Online', 'The Seattle Times', 'Market Realist via Yahoo!7 Finance', 'CNN', 'Vogue.co.uk', 'Softpedia News', 'Reuters', 'The Washington Times', 'IDEX Online', 'International Business Times UK', 'AFP via Yahoo UK & Ireland News', 'Gamasutra', 'Business Recorder', 'teleSUR English', 'The Economic Times', 'ABC News', 'Daily Mail', 'Opposing Views', 'Business Insider UK', 'Association France Palestine Solidarité', 'Sputnik International', 'Hot Air', 'eWeek', 'Telegraph.co.uk', 'Forbes', 'Fortune', 'The Motley Fool', 'Channel NewsAsia', 'CNBC', 'City A.M.', 'Worcester Telegram', 'Financial Times', 'El Watan', 'Daily Beast', "Talkin' Cloud", 'Eurogamer.net', 'Telegraph.co.uk', 'NewsFactor Network', 'Fox News', 'WND.com', 'Al-Jazeerah.info', 'WinBeta', 'WindowsItPro (subscription)', 'Bitbag', 'U.S. News & World Report (blog)', 'Washington Post', 'Huffington Post', 'Sputnik International', 'The Canadian Press via Yahoo Canada News', 'SC Magazine UK', 'Department of Defense', 'CityLab', 'MacNN', 'iPolitics.ca (subscription)', 'NDTV', 'MSPoweruser.com', 'DunyaNews Pakistan', 'Politico', 'The Independent', 'Washington Free Beacon', 'AllAfrica.com', 'NAIJ.COM', 'Bloomberg', 'Metro', 'the Irish News', 'Bloomberg', 'Business Insider', 'The Hill', 'Reuters', 'Chicago Tribune', 'Calgary Sun', 'Daily Kos', 'IT World Canada', 'Reuters via Yahoo! Philippines News', 'Associated Press via Yahoo! News', 'Middle East Monitor', 'NOLA.com', 'Associated Press via Yahoo! News', 'AFP via Yahoo! India News', 'ABC News', 'Hot Air', 'Business Insider Australia', 'Telegraph.co.uk', 'TASS', 'NDTV', 'Newshub', 'Digitimes', 'WinBeta', 'Bloomberg', 'Right Wing Watch', 'the Irish News', 'Western Journalism', 'Business Standard', 'Computer World Australia', 'The Independent', 'MLive.com', 'New York Times', 'Associated Press via Yahoo UK & Ireland News', 'WRAL.com', 'Reuters', 'Illawarra Mercury', 'Financial Times', 'TechRepublic', 'WMUR Manchester', 'Fox News', 'Daily Californian', 'Los Angeles Times', 'American Thinker', 'Reuters', 'Arab News', 'DNA India', 'WMTW Portland', 'Business Insider via Yahoo! Finance', 'The Hill', 'Sputnik International', 'Minneapolis Star Tribune', 'The Daily Star', 'IBNLive', 'Economic Times', 'AFP via Yahoo! News', 'International Business Times', 'Reuters via Yahoo! Finance', 'Business Insider via Yahoo! Finance', 'Forbes', 'Next City', 'Financial Times', 'Forbes', 'The Hill (blog)', 'IBN live', 'Vox', 'Washington Times', 'ETRetail.com', 'Reuters via Yahoo! Finance', 'ZDNet', 'Globalnews.ca', 'Sputnik International', 'Reuters UK', 'WECT 6 Wilmington', 'Daily Beast', 'The New Zealand Herald', 'The Japan Times', 'Bloomberg', 'Toledo News Now', 'Business Wire via Yahoo UK & Ireland Finance', 'CNN', 'The Washington Times', 'News1130', 'MSPoweruser.com', 'Reuters via Yahoo! Finance', 'Washington Times', 'The Epoch Times', 'Forbes', 'Washington Post', 'Spectator.co.uk (blog)', 'ABC News', 'PSFK (blog)', 'eWeek', 'Redmondmag.com', 'Yahoo News', 'Channel NewsAsia', 'AFP Relax via Yahoo! Singapore News', 'The Inquisitr', 'New York Times', 'ZDNet', 'Irish Examiner', 'The Register', 'TechCrunch', "Crain's Detroit Business", 'www.worldbulletin.net', 'PC Magazine', 'National Post', 'MediaPost', 'The Hill', 'Bernama', 'Reuters via Yahoo! Finance', 'Bloomberg', 'Hong Kong Standard', 'Vanguard', 'FXStreet', 'TechRadar', 'The Fiscal Times', 'KPRC Houston', 'WebProNews', 'USA TODAY', 'BDlive', 'NBCNews.com', 'Whitehouse.gov (press release)', 'MSPoweruser.com', 'The Borneo Post', 'Billboard', 'HardwareZone', 'TechRadar', 'CBS San Francisco', 'TPM', 'Herald Sun', 'Softpedia News', 'CNET UK', 'Washington Post (blog)', 'Tech Times', 'Marketwired via Yahoo UK & Ireland Finance', 'Tech News Today', 'TIME', 'WPEC', 'Washington Free Beacon', 'Business Wire via Yahoo! Finance', 'Zimbabwe Independent', 'The Australian (blog)', 'Fox 59', 'Sky News', 'NEWS10 ABC', 'AMEinfo', 'Financial Times', 'RTT News', 'Art Newspaper', 'Algemeiner', 'CNN', 'AlterNet', 'TheBlaze.com', 'NewsFactor Network', 'ABC News', 'Bloomberg', 'Business Insider', 'International Business Times UK', 'Business in Vancouver', 'Bloomberg', 'Malaysian Digest', 'Trinidad & Tobago Express', 'Business Insider', 'ForexLive', 'TheBlaze.com', 'GMA News Online', 'MENAFN', 'Seattle Times', 'PR Newswire', 'Oilprice.com via Yahoo! Finance', 'Daily Signal', 'WinBeta', 'Eurasia Review', 'AsiaOne', 'FOX13 Memphis', 'Washington Post', 'International Business Times', 'FXStreet', 'Hackaday', 'The Punch', 'NDTV', 'Huffington Post', 'Asharq Alawsat', 'Dallas Morning News (blog)', 'CNN Money', 'Boston Herald', 'USA TODAY', 'CNBC', 'The Christian Science Monitor', 'Right Wing Watch', 'Express.co.uk', 'Forbes', 'The Daily Star', 'The West Australian', 'The Indian Panorama', 'AsiaOne', 'Neowin', 'ESPN (blog)', 'The Guardian', 'Daily Mail', 'Daily Kos', 'U.S. News & World Report', 'AFP via Yahoo!7 News', 'AFP via Yahoo! India News', 'Chicago Tribune', 'TechEye', 'New York Times', 'PennLive.com', 'Market Realist via Yahoo! Finance', 'Nikkei Asian Review', 'Business Insider', 'Associated Press via Yahoo! Finance', 'AFP via Yahoo Maktoob News', 'Digital Trends via Yahoo UK & Ireland News', 'Mother Jones', 'The Denver Post', 'Entrepreneur', 'Neowin', 'Politico', 'Forbes', 'Reuters', 'WLKY Louisville', 'Politico (blog)', 'Yahoo News', 'CNN', 'The Daily Star', 'BizPac Review', 'ABC News', 'Reuters', 'Montana Standard', 'Reuters via Yahoo! News', 'ABC 26 New Orleans', 'Independent Online', 'World Politics Review', 'Windows Central', 'Inc.com', 'IBNLive', 'Mother Jones', 'Haaretz', 'The Gleaner', 'Reuters', 'Mehr News Agency - English Version', 'Minnesota Public Radio News', 'Politico (blog)', 'Sputnik International', 'The Globe and Mail', 'IBNLive', 'TechRadar', 'Redress Information & Analysis', 'Huffington Post', 'Bloomberg View', 'Reuters via Yahoo! News', 'WinBeta', 'Reuters', 'Market Realist', 'Vanguard', 'Reuters via Yahoo Canada News', 'Financial Times', 'Bloomberg via Yahoo! Finance', 'Huffington Post', 'Reuters via Yahoo! Finance', 'Politico', 'Fortune', 'The Truro Daily News', 'Seeker (registration) (blog)', 'Modest Money (press release) (blog)', 'The Australian Financial Review', 'PC World', 'CNN', 'U.S. News & World Report', 'CNBC', 'IT World', 'MarketWatch via Yahoo! News', 'Washington Post', 'Truth-Out', 'Chicago Tribune', 'Reuters', 'The National', 'Reuters via Yahoo UK & Ireland News', 'SBS', 'MarketWatch', 'International Business Times UK', 'euronews', 'CNET via Yahoo! News', 'AFP via Yahoo!7 News', 'Daily Telegraph', 'MSPoweruser.com', 'The Independent', 'POLITICO Magazine', 'Wall Street Journal', 'Seeking Alpha', 'Yahoo News UK', 'Arab News', 'Reuters via Yahoo! News', 'Breitbart News', 'E! Online', 'Motley Fool', 'PCWorld', 'Red Flag', 'Irish Times', 'Wall Street Journal', 'SuperSite for Windows', 'International Middle East Media Center', 'The Verge via Yahoo! News', "Investor's Business Daily", 'RenewEconomy', 'WinBeta', 'AFP via Yahoo! India News', 'WinBeta', 'TASS', 'Intifada Palestine', 'Fox News', 'Breitbart News', 'CNBC', 'Re/code', 'Sputnik International', 'Channel NewsAsia', 'WGAL 8 Susquehanna Valley', 'Livemint', 'Reason (blog)', 'Phys.Org', 'CBC via Yahoo Canada News', 'The Guardian', 'ABC News', 'CoinDesk', 'The Verge', 'WIS News 10 Columbia', 'Baltimore Sun', 'AFP Relax News via Yahoo! News', 'Business Green', 'Nasdaq', 'Huffington Post', 'Express.co.uk', 'Bloomberg', 'ForexLive', 'NewsBusters (blog)', 'Politico', 'The Bitbag', 'Daily News & Analysis', 'Washington Post', 'BBC News', 'NPR', 'Market Realist via Yahoo! Finance', 'Vox', 'Green Left Weekly', 'Times LIVE', 'GlobalPost', 'Mashable via Yahoo! News', 'Fort Worth Star Telegram', 'The Economist', '680 News', 'Associated Press via Yahoo UK & Ireland News', 'Popzara', 'Washington Post', 'Press-Enterprise', 'Poughkeepsie Journal', 'Financial Times', 'SiliconANGLE (blog)', 'Washington Post', 'Xconomy', 'The Hill (blog)', 'Travel+Leisure', 'The West Australian', 'ARNnet', 'Sunday Business Post', 'RealClearPolitics', 'New York Times', '9news.com.au', 'Stuff', 'CityMetric', 'Reuters via Yahoo! News', 'Profit Confidential', 'Reuters via Yahoo! Singapore News', 'Bloomberg', 'U.S. News & World Report', 'RT', 'CNN Money', 'American Thinker', 'Toronto Star', 'POPSUGAR', 'The Star Online', 'Business Insider', 'Rhode Island Public Radio', 'MercoPress', 'CBS News', 'PoliticusUSA', 'teleSUR English', ' ', 'AFP News via Yahoo! Singapore News', 'Haaretz Daily', 'Algemeiner', 'AFP via Yahoo!7 Finance', 'Sputnik International', 'The Globe and Mail', 'www.worldbulletin.net', 'Radio.com Music and Entertainment News', 'New York Times Finance', 'Patently Apple', 'Jerusalem Post Israel News', 'Wall Street Journal', 'TheStreet.com', 'Digital Trends', 'Nasdaq', 'Marketplace.org', 'Palestine News Network', 'BetaNews', 'VICE News', 'Forbes', 'Sioux Falls Argus Leader', 'MENAFN', 'FOX30 / CBS47 Jacksonville', 'Fox Business', 'AAP via Yahoo! New Zealand Finance', 'International Business Times', 'The ', 'WAFA - Palestine News Agency', 'Sputnik International', 'The Eagle Online', 'CIO', 'STLtoday.com', 'ABC News', 'KCET', 'Fox News', 'Reuters UK', 'International Business Times via Yahoo UK & Ireland News', 'Washington Times', 'Benzinga', 'TIME', 'Tampa Bay Times', 'Fulton News', 'ABC 7 Gulfshore News', 'Telegraph.co.uk', 'gulfnews.com', 'The Globe and Mail', 'Washington Post', 'The Japan Times', 'Detroit Free Press', 'Computer World Australia', 'Windows Report', 'TheBlaze.com', 'ChannelLife Australia', 'Variety', 'ARC', 'azcentral.com', 'Scoop.co.nz (press release)', 'Al Bawaba', 'Jamaica Observer', 'Science Times', 'AFP via Yahoo! India News', 'Times Record News', 'Bloomberg', 'Mondoweiss', 'ZDNet', 'Eagle-Tribune', 'Yahoo Finance UK', 'Washington Times', 'New York Times', 'TechnoBuffalo', 'Nasdaq', 'Bangor Daily News', 'The Malaysian Insider', 'Windows IT Pro', 'Commercial Property Executive', 'Amarillo Globe-News', 'Reuters via Yahoo! Finance', 'NYU Washington Square News', 'Fortune', 'IANS via Yahoo Maktoob News', 'Washington Times', 'Financial Times', 'Yorkton This Week', 'TASS', 'Market Watch', 'Reuters', 'Middle East Eye', 'Financial Times', 'Re/code', 'U.S. News & World Report', 'Wall Street Journal', 'International Business Times', 'CRIENGLISH.com', 'Daily Caller', 'Twitchy', 'WinBeta', 'Threatpost', 'BDlive', 'groovyPost', 'TheStranger.com', 'groovyPost', 'Associated Press via Yahoo! India News', 'MarketWatch', 'The Verge via Yahoo! News', 'Daily Mail', 'Breitbart News', 'The Heartland Institute', 'Ars Technica', 'The Manila Times', 'Leesville Daily Leader', 'Calgary Sun', 'Co.Design', 'People Magazine', 'Sputnik International', 'The Times of Israel', 'The Globe and Mail (subscription)', 'NDTV', 'The Memo', 'Asahi Shimbun', 'Daily Caller', 'Daily Times', 'Haaretz', 'USA TODAY', 'Slate Magazine', 'TASS', 'Motorsport.com, Edition: Global', 'ABC News', 'The Globe and Mail (subscription)', 'The Christian Times', 'DNA India', 'Maple Ridge News', 'www.worldbulletin.net', 'Sky News', 'The Guardian', 'Al-Monitor', 'WCCFtech', 'Reuters', 'NYSE Post', 'New York Times', 'Neowin', 'BBC News', 'Nikkei Asian Review', 'CNN Money', 'ForexLive', 'Blastr', 'The Canadian Press via Yahoo Canada News', 'NJ.com', 'Reuters via Yahoo! Finance', 'Politico', 'Daily Mail', 'Los Angeles Times', 'IANS via Yahoo Maktoob News', 'The Japan Times', 'ABC Online', 'www.breakbulk.com', 'BBC News', 'Economic Times', 'Trade Arabia', 'Aljazeera.com', 'TheBlaze.com', 'Financial Times', 'CNN.com', 'Town Hall', 'SB Nation', 'Economic Times', 'Business Insider via Yahoo! Finance', 'OregonLive.com', 'CBS News', 'Daily Mail', 'Bloomberg', 'Aljazeera.com', 'Huffington Post', 'TheBlaze.com', 'New Vision', 'InformationWeek', 'Washington Times', 'WinBeta', 'The Star Online', 'CBS Miami', 'Reuters', 'Al-Bawaba', 'ComputerworldUK', 'CNET', 'The Weekly Standard (blog)', 'Alaska Dispatch News', 'TIME', 'The Conversation AU', 'Yonhap News', 'Neowin', 'WMPoweruser.com', 'Palestine Herald Press', 'Bloomberg', 'ZDNet', 'Mississauga News', 'Firstpost', 'The Wall Street Journal', 'EE Times Asia', 'Bloomberg', 'New York Times', 'Softpedia News', 'MSPoweruser.com', 'ABC News', 'UQ News', 'Daily Beast', 'PC Gamer', 'Bloomberg', 'AFP Relax News via Yahoo! News', 'Indiatimes.com', 'AllAfrica.com', 'Daily News & Analysis', 'Daily Beast', 'Digital Trends via Yahoo! Sports', 'eWeek', 'Palestine Herald Press', 'TWCN Tech News (blog)', 'WFLX FOX 29', 'FiveThirtyEight', 'Vatican Radio', 'Financial Times', 'CNBC via Yahoo! Finance', 'PCWorld', 'The Star Online', 'Daily News & Analysis', 'Reuters via Yahoo UK & Ireland Finance', 'Xinhua', 'NPR', 'AFP Relax via Yahoo! Singapore News', 'WSLS', 'Digital Trends via Yahoo! News', 'Reuters via Yahoo! Finance', 'FOX Business', 'CNW Group via Yahoo! Finance', 'International Business Times UK', 'AFP via Yahoo! India News', 'Washington Post', 'Hot Air', 'The Washington Times', 'FOXSports.com', 'Marketwired via Yahoo UK & Ireland Finance', 'Computerworld', 'WAFA - Palestine News Agency', 'Irish Times', 'The Rebel', 'The ', 'Reuters', 'The Mac Observer', 'Reuters via Yahoo! Finance', 'International Middle East Media Center', 'gulfnews.com', 'Clapway', 'expressandstar.com', 'Newbritainherald', 'PR Web (press release)', 'The Guardian', 'Forbes', 'Media Matters for America', 'Calgary Herald', 'The Daily Star', 'WTHR Indianapolis', 'Mondoweiss', 'SC Magazine', 'MIS Asia', 'Redmondmag.com (blog)', 'The Chronicle Herald', 'Palestine News Network', 'Wall Street Journal', 'Sleepy Eye Herald Dispatch', 'The Times of Israel', 'Deccan Herald', 'AFP via Yahoo! News', 'American Thinker (blog)', 'GeekWire', 'FOX 7 Austin', 'CNBC via Yahoo! Finance', 'Town Hall', 'CNN', 'CBS News', 'CBS Local', 'Business Recorder', 'AFP via Yahoo! India News', 'USA TODAY', 'News24', 'Android Police', 'Telegraph via Yahoo UK & Ireland Finance', 'Billings Gazette', 'Bloomberg', 'New Zealand Herald', 'Quartz', 'The Guardian', 'CNN International', 'Associated Press via Yahoo! New Zealand Finance', 'International Herald Tribune', 'The Washington Times', 'Vanguard', 'Bloomberg', 'NPR', 'Scarborough Today', 'The White House (blog)', 'MacroBusiness (blog)', 'Business Wire (press release)', 'WinBeta', 'WAFA - Palestine News Agency', 'Threatpost', 'ABC News', 'Daily Telegraph', 'Bloomberg', 'Uncover California', 'Stabroek News', 'CBC via Yahoo Canada News', 'News1130', 'Neowin', 'Windows Central', 'PC World', 'The Australian Financial Review', 'Los Angeles Times', 'Christian Science Monitor', 'The Week Magazine', 'Financial News (subscription)', 'Telegraph.co.uk', 'eWeek', 'Reuters', 'Cinema Blend', 'Associated Press via Yahoo Maktoob News', 'Business Wire via Yahoo! Finance', 'Media Matters for America', 'NBC NEWS', 'NBCNews.com', 'Consortium News', 'InformationWeek', 'Business Insider', 'KMWorld Magazine', 'Montgomery Advertiser', 'TheStreet.com', 'ABC News', 'Business Wire via Yahoo Canada Finance', 'The Economic Times', 'euronews', 'CNBC', 'Washington Post (blog)', 'WFMZ Eastern Pennsylvania and Western New Jersey', 'The Australian Financial Review', 'Bloomberg', 'The Boston Globe', 'Fox News', 'Washington Times', 'CBC.ca', 'AFP via Yahoo! Sports', 'Washington Times', 'SlashGear', 'CNBC', 'PCWorld', 'The Hill', 'The Guardian', 'ABC Online', 'Nasdaq', 'MSPoweruser.com', 'MIT Technology Review', 'Digital Trends via Yahoo! News', 'Forbes', 'Bloomberg', 'MSNBC', 'Associated Press via Yahoo UK & Ireland Finance', 'Sydney Morning Herald', 'Palestine Herald Press', 'Daily Sun', 'GeekWire', 'FOX 12 Oregon', 'Channel NewsAsia', 'Berkshire Eagle (subscription)', 'AdExchanger', 'The Globalist', 'ETtech.com', 'Ghanaweb.com', 'gulfnews.com', 'The Hazleton Standard-Speaker', 'Town Hall', 'International Middle East Media Center', 'WGEM Quincy', 'The Hill', 'The Standard Digital News (press release) (blog)', 'Yahoo Politics', 'Forbes', 'FOX 5 Atlanta', 'BuzzFeed News', 'TPM', 'Forex Factory', 'PoliticusUSA', 'VentureBeat', 'New York Post', 'MIS Asia', 'Bloomberg', 'Yahoo Finance UK', 'Albuquerque Journal', 'WNBA.com', 'PC World', 'AFP via Yahoo! New Zealand News', 'Business Wire via Yahoo UK & Ireland Finance', 'PCWorld', 'Christian Post', 'AFP via Yahoo! News', 'WJXT Jacksonville', 'Irish Examiner', 'The Verge', 'AFP via Yahoo!7 News', 'Intifada Palestine', 'Associated Press via Yahoo UK & Ireland News', 'The Guardian', 'Bay Area Indymedia', 'The Verge', 'CNN Money', 'GamesRadar (blog)', 'Mediaite', 'Seeking Alpha', 'RT', 'International Business Times', 'Reuters', 'Toronto Star', 'International Business Times', 'The Mary Sue', 'Wall Street Journal', 'Economic Times', 'Nikkei Asian Review', 'ITV News', 'TODAYonline', 'Reuters', 'The Japan Times', 'RealClearPolitics', 'The Business of Fashion', 'TheBlaze.com', 'MSPoweruser.com', 'MIS Asia', 'The Independent', 'Al Jazeera via Yahoo Maktoob News', 'TechEye', 'Minneapolis-St. Paul Star Tribune', 'Philly.com', 'New York Post', 'UPI.com', 'Reuters', 'Los Angeles Times', 'The New Zealand Herald', 'Computerworld', 'The Globe and Mail (subscription)', 'TechCrunch', 'TMZ.com', 'IANS India Private Limited via Yahoo! Singapore News', 'Reuters via Yahoo! Singapore News', 'ABC News', 'Palestine News Network', 'Derry Journal', 'Bloomberg', 'CNNMoney', 'Market Realist via Yahoo! Finance', 'Digital Trends via Yahoo Canada News', 'Mashable', 'KLTV 7 Tyler', 'Fox News', 'Bloomberg', 'Palestine Herald Press', 'Benzinga', 'ABC News', 'TechRadar', 'J-Wire Jewish Australian News Service', 'New York Sun', 'WTHR Indianapolis', 'TheChronicleHerald.ca', 'FierceCIO', 'Fortune', 'The Herald', 'Anadolu Agency', 'Daily Caller', 'RadioFreeEurope/RadioLiberty', 'South African Broadcasting Corporation', 'Reuters', 'Economic Times', 'WCSH6.com', 'CNBC', 'wwlp.com', 'Africanews', 'Forbes', 'BetaNews', 'MarketWatch', 'United Nations', 'Haaretz Daily', 'CBS News', 'Jerusalem Post Israel News', 'NOLA.com', 'AsiaOne', 'Richmond Times-Dispatch', 'Intifada Palestine', 'The New Zealand Herald', 'Neowin', 'Las Vegas Review-Journal', 'Digital Trends via Yahoo! News', 'BreakingNews.ie', 'NJ.com', 'Bloomberg', 'The Guardian (blog)', 'TWCN Tech News (blog)', 'Hot Air', 'Daily Mail', 'Financial Times', 'Emirates 24|7', 'Bluffton Today', 'Firstpost', 'South China Morning Post (subscription)', 'New York Times', 'PC World', 'The Hill', 'Seattle Times', 'TheBlaze.com', 'Business Standard', 'Emirates 24|7', 'The News International', 'Computerworld New Zealand', 'Chicago Daily Herald', 'AllAfrica.com', 'Business Insider', 'AFP News via Yahoo! Singapore News', 'The Washington Times', 'Smithsonian', 'Neowin', 'The Hill (blog)', 'Washington Times', 'NPR', 'Montana Tech', 'Washington Examiner', 'The Verge', 'Press-Enterprise', 'Tempo.co', 'ENPI Info Centre', 'RenewEconomy', 'Emirates 24|7', 'ZDNet', 'Polygon via Yahoo! News', 'The Providence Journal', 'Prague Daily Monitor', 'Forbes', 'Tech Times', 'U.S. News & World Report', 'Toronto Sun', 'New Republic', 'Inside Higher Ed', 'Associated Press via Yahoo! Finance', 'Russia Beyond the Headlines', 'Daily Caller', 'Japan Today', 'Stabroek News', 'Washington Post', 'WAFA - Palestine News Agency', 'Stuff.co.nz', 'The Christian Science Monitor', 'Economic Times', 'Phone Arena', 'Business Insider', 'U.S. News & World Report', 'WRAL.com', 'Bloomberg', 'ABC News', 'Tech Times', 'Fuseworks via Yahoo! New Zealand Finance', 'New York Times', 'Washington Post', 'BetaNews', 'gulfnews.com', 'euronews', 'Computerworld', 'Reuters', 'CNN', 'Al-Monitor', 'ForexLive', 'TheStreet.com', 'UPROXX', 'Washington Post (blog)', 'Peoria Journal Star', 'Reuters via Yahoo! Finance', 'Outlook India', 'China Daily', 'Irish Times', 'Business Wire via Yahoo! Finance', 'Gizmodo Australia', 'Business Mirror', 'ABC News', 'Digital Trends via Yahoo! News', 'New Zimbabwe.com', 'Breitbart News', 'Times of India', 'New York Post', 'Reuters', 'Daily Star', 'Financial Post', 'Voice of America (blog)', 'FOX 61', 'Business Insider via Yahoo Canada Finance', 'WinBeta', 'MarketWatch', 'AsiaOne', 'Wall Street Journal Blogs', 'ReadWriteWeb', 'Seattle Times', 'Bloomberg', 'ZDNet', 'Intifada Palestine', 'Deadline', 'Bloomberg', 'International Business Times', 'Associated Press via Yahoo! News', 'KRQE & KASA FOX 2 Albuquerque', 'Financial Post', 'Digital Trends via Yahoo! News', 'RushLimbaugh.com', 'Computer Business Review', 'New York Times', 'WFMJ', 'Justmeans', 'TPM', 'CNSNews.com', 'Wall Street Journal (blog)', 'Economic Calendar', 'Hindustan Times', 'Financial Times', 'Reuters', 'Reuters via Yahoo UK & Ireland News', 'The Record', 'Reuters via Yahoo! News', 'Canada NewsWire (press release)', 'InfoWorld', 'The Punch', 'TechRadar', 'World Bank Group', 'GreenBiz', 'Business Wire via Yahoo! Finance', 'National Review Online', 'iPolitics.ca (subscription)', 'Financial Times', 'Circulate', 'Financial Times', 'Stuff.co.nz', 'Windsor Star', 'TheBlaze.com', 'ABC NEWS 4', 'Al-Monitor', 'Florida Times-Union', 'CBS News', 'Fox News', 'Fox News', 'Eastday.com', 'AFP News via Yahoo! Singapore News', 'Newstalk 106-108 fm', 'The Guardian', 'WinBeta', 'ExtremeTech', 'The Hill', 'BDlive', 'Bloomberg', 'Yahoo Finance', 'Wall Street Journal', 'DNA India', 'Bloomberg via Yahoo! Finance', 'CTV News', 'BizNews', 'Fairbanks Daily News-Miner', 'CNBC', 'Daily Caller', 'South China Morning Post', 'Bloomberg via Yahoo! Finance', 'Ghacks Technology News', 'Toronto Star', 'Forbes', 'Bloomberg', 'International Business Times', 'The Zimbabwe Standard', 'Vanguard', 'Huffington Post', 'Thomas Reuters Fondation', 'www.worldbulletin.net', 'PCWorld', 'Digital Trends via Yahoo! Sports', 'U.S. News & World Report', 'Sky News', 'Global Grind', 'Saudi Gazette via Yahoo Maktoob News', 'News.com.au', 'Market Realist', 'Idaho State Journal', 'Los Angeles Times', 'Business Green', 'Huffington Post', 'Mondoweiss', 'Business Insider', 'Bloomberg', 'AFP via Yahoo! News', 'WinBeta', 'Bloomberg', 'Wall Street Journal', 'Los Angeles Times', 'Lifehacker Australia', 'Financial Times', 'Reuters', 'Washington Post', 'Al Jazeera via Yahoo UK & Ireland News', 'KSWO', 'Reuters via Yahoo! News', 'TIME', 'Daily Sabah', 'EN DELFI', 'AlterNet', 'The Register', 'Trinidad Guardian', 'The Independent', 'Forward', 'Marketwire', 'Foreign Policy (blog)', 'The Guardian', 'Business Insider', 'BBC News', 'CNBC', 'Power Line (blog)', 'Phys.Org', 'IBNLive (blog)', 'NDTV', 'The National Interest Online (blog)', 'Sun-Sentinel', 'Reuters UK', 'The Nation', 'Yahoo News', 'New York Post', 'Chandigarh Tribune', 'Computer Weekly', 'Inferse', 'The Huffington Post', 'MarketWatch', 'Marketwired via Yahoo! Finance', 'Reuters', 'WBNS-10TV Columbus', 'PC World', 'Commercial Property Executive', 'Viet Nam News', 'Business Wire (press release)', 'TrustedReviews', nan, 'Digital Trends', 'Intifada Palestine', 'CCTV', 'Gulf Digital News', 'MarketWatch', 'Economic Times', 'Re/code', 'Sydney Morning Herald', 'Breitbart News', 'TechnoBuffalo', 'AAP via Yahoo!7 News', 'ETonline via Yahoo Celebrity', '+972 Magazine', 'Reuters', 'Fox News', 'Windows Central', 'The Hill', 'USA TODAY', 'Jerusalem Post Israel News', 'New Zealand Herald', 'International Business Times via Yahoo UK & Ireland News', 'The Straits Times', 'MassLive.com', 'Independent Online', 'City A.M.', 'WAFA - Palestine News Agency', 'AFP via Yahoo! News', 'The Register', 'Newsmax', 'Press TV', 'Fortune', 'Daily Sabah', 'Economic Times', 'News24', 'Seattle Times', 'Financial Times', 'Western Journalism', 'Politico', 'V3.co.uk', 'Sify News', 'CNN', 'Forbes', 'Washington Post', 'Top Tech News', 'MarketWatch', 'Reuters via Yahoo UK & Ireland Finance', 'The Atlantic', 'InfoToday.com', 'Us Weekly', 'Market Realist via Yahoo!7 Finance', 'AllAfrica.com', 'CTV.ca', 'Economic Times', 'Washington Times', 'Reuters', 'Washington Post', 'ABC News', 'Financial Post', 'Athens Banner-Herald', 'TPM', 'Scoop.co.nz (press release)', 'AFP via Yahoo! India News', 'BetaNews', 'The Courier Life News', 'Rockford Register Star', 'Huffington Post', 'Human Resources Online', 'CBC.ca', 'Mintpress News (blog)', 'Greenfield Daily Reporter', 'Hindustan Times', 'Reuters', 'Mediaite', 'People Magazine', 'WMTW Portland', 'Telegraph.co.uk', 'Anadolu Agency', 'Android Headlines - Android News', 'PC World', 'Economic Times', 'Economic Times', 'Reuters via Yahoo! Sports', 'The Hill', 'Reuters via Yahoo! Finance', 'CBS 19 Tyler', 'Tampa Bay Times', 'Brad Jones, Digital Trends via Yahoo! News', 'DNA India', 'Firstpost', 'VOA Zimbabwe', 'Latin Post', 'CNBC', 'The Wall Street Journal', 'Associated Press via Yahoo! News', 'The Fiscal Times', 'Outlook India', 'TechCrunch', 'The Globe and Mail', 'CNNMoney', 'Press TV', 'Business Wire (press release)', 'KARE', 'The Guardian', 'Cato Institute', 'Huffington Post', 'ABC News', 'The Indian Express', 'Independent Online', 'WinBeta', 'Taipei Times', 'Zacks via Yahoo UK & Ireland Finance', 'Vocativ', 'The Daily Star', 'FXStreet', 'BuzzFeed News', 'Tech Times', 'AAP via Yahoo!7 News', 'Forbes', 'Business Standard India', 'Economic Times', 'Arab News', 'Bearing Arms', 'WTMJ-TV (press release) (registration) (blog)', 'CNN', 'Jakarta Globe', 'Fox News', 'CNSNews.com', 'Financial Post', 'WinBeta', 'AFP via Yahoo!7 News', 'Boing Boing', 'STLtoday.com', 'GamesIndustry.biz (registration)', 'Middle East Monitor', 'Voice of America', 'Truth-Out', 'Venezuelanalysis.com', 'Palestine News Network', 'Sky News Australia', 'Bloomberg', 'WAFA - Palestine News Agency', 'The Canadian Press via Yahoo Canada News', 'Telecompaper (subscription)', 'International Business Times', 'Voice of America (blog)', 'The Boston Globe', 'Mother Jones', 'Realty Today', 'City A.M.', 'BBC News', 'OregonLive.com', 'The Diplomat', nan, 'The Seattle Times', 'KCRG', 'Palestine News Network', 'Devex', 'Phone Arena', 'Philadelphia Business Journal', 'Inquirer.net', 'Marketwired via Yahoo UK & Ireland Finance', 'Daily Signal', 'Reuters via Yahoo! Finance', 'Yahoo Canada Sports (blog)', 'New Zealand Herald', 'CBS News', 'Waste Management World', 'Business Insider via Yahoo! Finance', 'WinBeta', 'International Business Times via Yahoo UK & Ireland News', 'NBC NEWS', 'VentureBeat', 'CNSNews.com', 'Cyprus Mail', 'World Socialist Web Site', 'U.S. News & World Report', 'Sputnik International', 'The Verge', 'Mirror.co.uk', 'CNBC', 'Washington Examiner', 'TechnoBuffalo', 'Channel NewsAsia', 'CIO', 'Tech Insider (blog)', 'The Washington Times', 'BBC News', 'Daily News & Analysis', 'Timesonline.com', 'Wired News', 'Seattle Times', 'Washington Free Beacon', 'Neurogadget', 'Co.Design', 'New Sabah Times', 'MSPoweruser.com', 'CNET', 'New York Daily News', 'The Fiscal Times', 'NEWS.com.au', 'Co.Design (blog)', 'Yahoo Travel', 'Wall Street Journal', 'CBS 19 Tyler', 'The Rock Hill Herald', 'Financial Times', 'The New Times', 'Morning Star Online', 'Zimbabwe Independent', 'InformationWeek', 'Tech Times', 'Stock & Land', 'NPR', 'The Australian', 'BBC News', 'Quartz', 'The Detroit News', 'NDTV', 'The National', 'GoErie.com', 'New York Times', 'Mother Jones', 'The New Yorker', 'Daily Mail', 'Sky News via Yahoo UK & Ireland News', 'Voice of America', 'Bella Naija', 'Financial Times', 'MIS Asia', 'Intifada Palestine', 'Bloomberg', 'Gamepur', 'The Star Online', 'Stockhouse', 'BBC News', 'The Guardian', 'Android Police', 'Neurogadget', 'The Times (subscription)', 'Reuters', 'ABC News', 'WMUR Manchester', 'Daily Star', 'TWCN Tech News (blog)', 'Sputnik International', 'Windows Central', 'NBC New York', 'The Australian', 'Fortune', 'Investorplace.com', 'Bangor Daily News', 'Associated Press via Yahoo! News', 'Forbes', 'The Australian', 'The Indian Express via Yahoo! India News', 'Hybrid Cars News', 'Nasdaq', 'WND.com', 'Breitbart News', 'Tempo.co', 'Siliconrepublic.com', 'Business Insider', 'Sydney Morning Herald', 'Reuters via Yahoo! India News', 'Vancouver Sun', 'AFP via Yahoo! News', 'Vocativ', 'Breitbart News', 'Omaha World-Herald', 'Reuters via Yahoo Maktoob News', 'Bloomberg', 'The Guardian', 'Manila Bulletin', 'Neowin', 'The Star', 'Reuters via Yahoo! News', 'NJ.com', 'TASS', 'Renewable Energy Focus', 'KLTV', 'ABC News', 'Morning Star', 'The Verge', 'Redmond Channel Partner', 'The Columbian', 'National Catholic Reporter (blog)', 'Los Angeles Times', 'RT', 'Express.co.uk', 'WinBeta', 'Motley Fool', 'Phone Arena', 'The Business Times Singapore', 'ABC News', 'ABC News', 'Globalnews.ca', 'Nasdaq', 'International Business Times', 'Business Spectator', 'Huffington Post', 'WGBA-TV', 'CNSNews.com', 'CNBC', 'The Indian Express', 'Boston.com', 'Grand Island Independent', 'Fox Sports', 'Newsmax', 'BBC News', 'Associated Press via Yahoo! Finance India', 'TIME', 'State-Journal.com', 'Reuters via Yahoo! Sports', 'Washington City Paper (blog)', 'Pc-Tablet Media', 'U.S.News & World Report via Yahoo! News', 'Benzinga via Yahoo! Finance', 'Ennahar', 'The Canadian Press via Yahoo Canada News', 'San Francisco Chronicle', 'World Socialist Web Site', 'ValueWalk', 'Queerty', 'Irish Times', 'PR Newswire (press release)', 'Business Insider', 'Financial Post', 'The Guardian', 'Twin Falls Times-News', 'IBNLive', 'Belfast Telegraph', 'San Jose Mercury News', 'Hot Springs Sentinel', 'Fox News', 'ExtremeTech', 'Bloomberg', 'Tribune-Review', 'Morning Star Online', 'CNET', 'The Next Web', 'Telegraph.co.uk', 'CBS News', 'Techvibes (blog)', 'Oilprice.com via Yahoo! Finance', 'Sydney Morning Herald', 'MarketWatch', 'Washington Examiner', 'Politico (blog)', 'Mississauga', 'Power Line (blog)', 'TrustedReviews', 'WAFA - Palestine News Agency', 'Los Angeles Times', 'Tyler Morning Telegraph', 'Chandigarh Tribune', 'Economic Times', 'International Middle East Media Center', 'Raw Story', 'Reuters', 'MarketWatch', 'Daily News & Analysis', 'snopes.com', 'American Thinker', 'WRAL.com', 'Fox News', 'Capital FM Kenya (press release) (blog)', 'Telegraph.co.uk', 'ABC News', 'Windows Central', 'AFP via Yahoo! New Zealand News', 'GoLocalProv', 'RTT News', 'Esquire.com', 'Associated Press via Yahoo! Finance', 'The Guardian', 'Reuters via Yahoo! Finance', 'Business Insider', 'Wall Street Journal', 'CNBC', 'Forbes', 'euronews', 'The Register', 'Arizona Daily Sun', 'Gadgette', 'Bloomington Pantagraph', 'Reuters', 'Business Insider', 'Softpedia News', 'The Huffington Post', 'CNN Money', 'KCTV 5 Kansas City', 'Milwaukee Journal Sentinel', 'Alberta Daily Herald Tribune', 'Reuters', 'NDTV', 'CNN', 'Morning Journal News', 'NPR', 'WTOP', 'Gawker', 'Washington Times', 'Associated Press via Yahoo! Finance', 'Reuters UK', 'Al-Monitor', 'Omaha World-Herald', 'Nasdaq', 'MENAFN', 'BDlive', 'MSNBC', 'Orlando Sentinel', 'Albuquerque Journal', 'Washington Post', 'Steelers Lounge (blog)', 'U.S. News & World Report', 'People Magazine', 'Economic Times', 'The Straits Times', 'BBC News', 'Washington Post', 'Daiji World', 'BetaNews', 'Redmond Channel Partner (blog)', 'New York Times', 'Khaleej Times', 'WWD', 'The Guardian', 'Esquire.com', 'Forbes', 'ForexLive', 'Today.com', 'BBC News', 'The Register', 'Jerusalem Post Israel News', 'The American Conservative', 'Digital Trends via Yahoo Canada News', 'Bloomberg', 'BetaNews', 'WinBeta', 'TASS', 'Forbes', 'Nikkei Asian Review', 'Wall Street Journal', 'Sporting News via Yahoo UK & Ireland Sport', 'NBCNews.com', 'NBC NEWS', 'People Magazine', 'The Hindu', 'MyCentralJersey.com', 'The Nation', 'The Indian Express', 'NEWS.com.au', 'Raw Story', 'Huffington Post UK', 'Los Angeles Times', 'The Punch', 'Press TV', 'Palestine Herald Press', 'Telegraph.co.uk', 'Business Insider', 'Yahoo News', 'Forbes', 'Computer World Australia', 'Bloomberg', 'gulfnews.com', 'CNNMoney', 'CRN - UK', 'New Zealand Herald', 'San Jose Mercury News', 'Time Magazine', 'Nikkei Asian Review', 'BBC News', 'USA TODAY', 'The Hill (blog)', 'The Nation Newspaper', 'CBC.ca', 'Business Standard', 'Breitbart News', 'Daily News Egypt', 'Minneapolis-St. Paul Star Tribune', 'PolitiFact', 'The Hollywood Reporter via Yahoo! News', 'WND.com', 'Daily Telegraph', 'Nikkei Asian Review', 'Livemint', 'Al Jazeera via Yahoo UK & Ireland News', 'Express.co.uk', 'Macleans.ca', 'Newsweek', 'Madison.com', 'Construction Week Online', 'New York Times', 'The Voice Observer (blog)', 'Deutsche Welle', 'CNN', 'Intifada Palestine', 'Bloomberg via Yahoo! Finance', 'Latin Post', 'News One', 'Yahoo Politics', 'CNN International', 'The Hill (blog)', 'New York Times', 'Oilprice.com via Yahoo! Finance', 'NBCNews.com', 'ArabianBusiness.com', 'PC World', 'CNSNews.com', 'ArabianBusiness.com', 'USA TODAY', 'Brisbane Times', 'Vanguard', 'ZDNet', 'Evening Standard', 'CRN - UK', 'Computerworld', 'Daily Mail', '9news.com.au', 'People Magazine', 'KLTV 7 Tyler', 'Obstacle Racing Media (press release) (blog)', 'Clarksville Leaf Chronicle', 'MSPoweruser.com', 'The Hill (blog)', 'The Link', 'Ubergizmo', 'CNBC via Yahoo! Finance', 'MarketWatch', 'Softpedia News', 'Voice of San Diego', 'International Business Times', 'Washington Post', 'Daily Journal', 'Associated Press via Yahoo! Finance India', 'Politico', 'Fast Company', 'WAFA - Palestine News Agency', 'The Age', 'Hybrid Cars News', 'Space War', 'SC Magazine UK', 'Bloomberg', 'Wall Street Journal', 'Vox', 'Upstate Business Journal', 'Arab News', 'The Guardian', 'The Epoch Times', 'The Wall Street Journal', 'fuse.tv', 'AFP via Yahoo! India News', 'New York Post', 'Plymouth Herald', 'Voice of America', 'Seattle Times', 'New York Times', 'Phys.Org', 'www.worldbulletin.net', 'Associated Press via Yahoo! News', 'SuperSite for Windows', 'Business Standard', 'Digital Trends via Yahoo! News', 'Forbes', 'Ghacks Technology News', 'Business Standard', 'Washington Times', 'Jerusalem Post Israel News', 'Digital Trends via Yahoo! Sports', 'AsiaOne', 'Breitbart News', 'Reuters via Yahoo! Sports', 'Hurriyet Daily News', 'Reuters via Yahoo! Finance', 'SiliconANGLE (blog)', 'Digital Trends via Yahoo! Sports', 'Independent Catholic News', 'The Canadian Press via Yahoo Canada News', 'Phys.Org', 'RT', 'Business Today', 'Business Wire (press release)', 'Religion News Service', 'Regina Leader-Post', 'Money Morning', 'The Register', 'ThinkProgress', 'Christian Science Monitor via Yahoo Canada News', 'Sputnik International', 'Phone Arena', 'Fast Company Magazine', 'New York Times', 'Sputnik International', 'AFP via Yahoo! News', 'AFP via Yahoo!7 Finance', 'Daily Mail', 'The Seattle Times', 'AFP via Yahoo!7 Finance', 'Haaretz', 'World Socialist Web Site', 'Financial Times', 'Parent Herald', 'The News International', 'Atlanta Business Chronicle', 'The Indian Express via Yahoo! India News', 'Al-Arabiya', 'The Consumerist', 'The Times (subscription)', 'ZDNet', 'Reuters via Yahoo! Finance', 'AllAfrica.com', 'Vanguard', 'Digital Trends via Yahoo Maktoob News', 'Bloomberg', 'Computer World Australia', 'The Times (subscription)', 'ANI via Yahoo! India News', 'Daily Beast', 'The Federalist', 'Jerusalem Post Israel News', 'The Wall Street Journal', 'Daily News & Analysis', 'Sioux Falls Argus Leader', 'Business Insider', 'Huffington Post', 'WinBeta', 'MIS Asia', 'Russian Information Agency Novosti', 'We Live Security (blog)', 'This is Money', 'EurasiaNet', nan, 'Vanity Fair', 'Wall Street Journal', 'WPTZ The Champlain Valley', 'New York Times', 'The Union Leader', 'TheStreet.com', 'Shanghai Daily (subscription)', 'PR Newswire (press release)', 'Washington Post', 'Fox News Latino', 'PJ Media', 'Deutsche Welle', 'Palestine Herald Press', 'New York Times', 'Press Association via Yahoo UK & Ireland News', 'The Libertarian Republic', 'MarketWatch via Yahoo!7 Finance', 'Canada Free Press', 'TheBlaze.com', 'FXStreet', 'The Hill (blog)', 'Middle East Eye', 'The Rock Hill Herald', 'Associated Press via Yahoo UK & Ireland News', 'The Huffington Post', 'The Orator', 'Hamilton Spectator', 'Minneapolis-St. Paul Star Tribune', 'Columbus Dispatch', 'Bwog', 'Daily Signal', 'AFP via Yahoo UK & Ireland Finance', 'The Record', 'AFP via Yahoo UK & Ireland News', 'Breitbart News', 'Kansas City Star', 'Human Rights Watch', 'CNBC', 'Al Jazeera via Yahoo Maktoob News', 'Reuters via Yahoo! Finance', 'New York Times', 'WND.com', 'Huffington Post', 'Business Insider Australia', 'Marketwired via Yahoo! Finance', 'Business Wire (press release)', 'ABC News', 'IBN live', 'NEWS.com.au', 'Fox Business via Yahoo! Finance', 'The Straits Times', 'CNN', 'UPI.com', 'Fortune', 'CBS News', 'Mediaite', 'FOX40 Sacramento', 'Bloomberg View', 'KTRK-TV', 'The Inquirer', 'Mediaite', 'IAM (registration) (blog)', 'NEWS.com.au', 'Bloomberg', 'Association France Palestine Solidarit\x9d\x9d', 'Ottawa Citizen', 'Breitbart News', 'NewsBusters (blog)', 'Politico', 'Asia Times', 'Daily Caller', 'KXNet.com', 'Business Insider', 'Business Insider via Yahoo! Finance India', 'Business Wire via Yahoo Canada Finance', 'Associated Press via Yahoo! News', 'Gamasutra (blog)', 'Tech.Co', 'Firstpost', 'The Muslim News', 'Telegraph via Yahoo UK & Ireland Finance', 'Palestine News Network', 'gulfnews.com', 'VentureBeat', 'The Straits Times', 'Daily Caller', 'Mic', 'Business Insider', 'The Courier', 'IANS via Yahoo Maktoob News', 'Skift', 'The Express Tribune (blog)', 'Financial Times', 'Times LIVE', 'Quartz', 'InformationWeek', 'Profit Confidential', 'ARNnet', 'Nasdaq', 'MIS Asia', 'New York Post', 'Minneapolis Star Tribune', 'Interfax', 'FierceCIO', 'TPM', 'The Huffington Post', 'University World News', 'Reuters', 'Politico', 'Reuters via Yahoo Canada Finance', 'MarketWatch', 'Petra News Agency', 'Politico', 'American Thinker (blog)', 'Sydney Morning Herald', 'Chicago Tribune', 'Daily Reckoning - Australian Edition', 'The Canadian Press via Yahoo Canada News', 'Business Insider', 'FXStreet', 'BDlive', 'Breitbart News', 'Bay Area Indymedia', 'British Journal of Photography', 'Insurance Journal', 'Bloomberg', 'The Economic Times', 'Politico', 'San Jose Mercury News', 'Hindustan Times', 'News24', 'Press TV', 'TheBlaze.com', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'CPI Financial', 'CBC.ca', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'New York Magazine', 'Observer', 'ABC News', 'The Australian (blog)', 'Cleveland 19 News', 'Reuters UK', 'South China Morning Post (subscription)', 'VG247', 'TheBlaze.com', 'Business Insider via Yahoo UK & Ireland Finance', 'The Hill (blog)', 'Tampa Bay Times', 'CNBC', 'Bloomberg', 'Gisborne Herald', 'Economic Times', 'U.S. News & World Report', 'The Federalist', 'Bloomberg via Yahoo! Finance', 'The Australian Financial Review', 'WXOW 19 La Crosse', 'Arab News', 'The Guardian', 'Town Hall', 'Radio New Zealand', 'Business Insider', 'STAT', 'FOXSports.com', 'NBCNews.com', 'InStyle', 'CNN', 'MSPoweruser.com', 'AsiaOne', 'RealClearPolitics', 'The Globe and Mail', 'Zacks via Yahoo! Finance', 'YES! Magazine', 'Refinery29', 'Economic Times', 'St. Albert Gazette', 'Digital Trends', 'Middle East Monitor (blog)', 'TheStreet.com', 'Bloomberg', 'Alg\x9d\x9drie Presse Service', 'CNBC', 'Domain News', 'PC World', 'American Spectator', 'TheBlaze.com', 'Associated Press via Yahoo! News', 'Quartz', 'Scoop.co.nz (press release)', 'Sify News', 'TheStreet.com', 'Reuters', 'Us Weekly', 'BBC News', 'TechnoBuffalo', 'MarketWatch', 'Business Wire via Yahoo UK & Ireland Finance', 'Seeking Alpha', 'USA TODAY', 'ABC News', 'CNN Money', 'AFP via Yahoo! News', 'DNA India', "L'info en direct d'Isra\x9d\x9dl 24h/24 (Communiqu\x9d\x9d de presse) (Blog)", 'New Republic', 'PR Newswire (press release)', 'Digital Trends via Yahoo! Sports', 'New York Times', 'Washington Post', 'Associated Press via Yahoo! Philippines News', 'Hellenic Shipping News Worldwide', 'Chicago Sun-Times', 'InsideHalton.com', 'ComputerWeekly.com', 'Malay Mail Online', 'Newsweek', 'Reuters via Yahoo! Finance', 'The Huffington Post', 'WTOP', 'The Australian Financial Review', 'Marketwired via Yahoo! Finance', 'Yahoo Finance', 'India Today', 'TASS', 'Destructoid', 'MarketWatch', 'Channel NewsAsia', 'Yahoo7 News', 'Breitbart News', 'Mediaite', 'AFP via Yahoo! News', 'MIS Asia', 'Triple Pundit (registration) (blog)', 'Chicago Sun-Times', 'KSBY San Luis Obispo News', 'IJ Review', 'Haaretz', 'Hot Air', 'TASS', 'Project Syndicate', 'Yahoo Finance', 'Jewish Telegraphic Agency', 'Daily Mail', 'CBC.ca', 'NPR', 'Church Militant', 'Motley Fool', 'Edmunds.com', 'RTÉ News', 'Reuters via Yahoo UK & Ireland News', 'PR Newswire via Yahoo! Finance', 'Mediaite', 'Siliconera', 'Intifada Palestine', 'Haaretz', 'CRN', 'American Spectator (blog)', 'In-Cyprus (press release) (subscription) (blog)', 'Norman Transcript', 'Wall Street Journal', 'New Republic', 'The Economist', 'The Detroit News', 'Boing Boing', 'USA TODAY', 'CNN', 'Premium Times', 'www.kingstonregion.com/', 'Washington Times', 'Reuters via Yahoo Maktoob News', 'Washington Times', 'The Local.de', 'Market Watch', 'The Wall Street Journal', 'San Jose Mercury News', 'Triple Pundit (registration) (blog)', 'Good Morning America via Yahoo! News', 'Stuff.co.nz', 'The Hill (blog)', 'Windows Central', 'Associated Press via Yahoo! India News', 'Associated Press via Yahoo! News', 'Channel News Asia', 'Columbus Ledger-Enquirer', 'New York Times', 'Seattle Times', 'WinBeta', 'AFP via Yahoo! India News', 'CNN', 'Yahoo Politics', 'International Business Times UK', 'NWAOnline', 'Financial Times', 'Bloomberg', 'www.worldbulletin.net', 'The New Times', 'Reuters', 'Financial Post', 'Forbes', 'Business Insider via Yahoo Maktoob News', 'The Hill (blog)', 'Jerusalem Post Israel News', 'Reuters', 'Algemeiner', 'AFP via Yahoo! India News', 'The Economist', 'Forward', 'Nikkei Asian Review', 'Minneapolis-St. Paul Star Tribune', 'Wall Street Journal', 'Daiji World', 'The Next Web', 'Washington Post', 'Vanity Fair', 'The Hill (blog)', 'Times of India', 'Forbes', 'Sputnik International', 'American Thinker (blog)', 'WAFA - Palestine News Agency', 'Re/code', 'Daily Mail', 'CNN International', 'WBEZ 91.5 Chicago', 'The Forward', 'Democracy Now!', 'Business Insider', 'AFP via Yahoo!7 News', 'Salon', 'Network World', 'WGAL 8 Susquehanna Valley', 'Vox', 'MSNBC', 'Economic Times', 'Telegraph.co.uk', 'CNBC', 'Business Insider', 'Redmondmag.com', 'Wall Street Journal', 'New York Times', 'WRAL.com', 'FXStreet', 'Investing.com', 'Redmond Channel Partner', 'Benzinga', 'International Business Times', 'The Hindu', 'Waste Management World', 'Bloomberg', 'The Indian Express via Yahoo! India News', 'TASS', 'Xinhua', 'Skift', 'SitePoint', 'Independent Catholic News', 'Salon.com', 'Twitchy', 'Zacks.com', 'National Review Online', 'Business Insider', 'Sky News Australia', 'PanARMENIAN.Net', 'Fox Business', 'Sun-Sentinel', 'Detroit Free Press', 'The Hill (blog)', 'Deccan Chronicle', 'Reuters via Yahoo! News', 'RollingStone.com', 'Arutz Sheva', 'Forbes', 'IT World Canada', 'MIS Asia', 'gulfnews.com', 'Reuters via Yahoo! Finance', 'The Australian Financial Review', 'Boing Boing', 'DesMoinesRegister.com', 'Power Line (blog)', 'Nyasa Times', 'WTVM', 'Dawn', 'Bangkok Post', 'Mashable', 'MSPoweruser.com', 'U.S. News & World Report', 'Direct Marketing News', 'Westside Gazette', 'The Hill (blog)', 'GeekWire', 'PC World', 'Town Hall', 'Shanghai Daily (subscription)', 'CIO', 'New York Times', 'PC Magazine', 'Tech Insider', 'USA TODAY', 'Bloomberg View', 'Trinidad Guardian', 'Omaha World-Herald', 'Market Realist', 'The Punch', 'Business Insider', 'GeekWire', 'Irish Examiner', 'Hyperallergic', 'Wall Street Pit', 'Milwaukee Journal Sentinel', 'Seattle Times', 'bizEDGE NZ', 'Al-Monitor', 'The Boston Globe', 'Las Vegas Review-Journal', 'Telegraph.co.uk', 'TWCN Tech News (blog)', 'Wall Street Journal', 'Institutional Investor', 'Yahoo TV (blog)', 'Livemint', 'Wall Street Journal', 'The Straits Times', 'BostInno', 'Reuters via Yahoo! Sports', 'Network World', 'Forbes', 'Chicago Tribune', 'Sydney Morning Herald', 'Wall Street Journal', 'Reuters via Yahoo! Finance', 'Mashable', 'Reuters', 'CNN', 'CNN Money', 'SlashGear', 'SiliconANGLE', 'stiripesurse.ro (Comunicat de Pres\x9d\x9d)', 'AFP via Yahoo! News', 'Investopedia', 'Reuters via Yahoo! News', 'Southwest Times', 'Marketwired via Yahoo! Finance', 'Contra Costa Times', 'Jerusalem Post Israel News', 'New York Times', 'Washington Post', 'Reuters UK', 'Cape Breton Post', 'Yahoo Finance', 'Daily Sabah', 'VentureBeat', 'Business Insider via Yahoo! Finance', 'Tech Media Network (Laptop) via Yahoo! News', 'The Australian Financial Review', 'BBC News', 'Brandon Sun', 'DAWN.com', 'CNET', 'MLive.com', 'Bloomberg via Yahoo! Finance', 'MSPoweruser.com', 'Newsmax', 'ZDNet', 'The Hill (blog)', 'Reuters', 'Reuters', 'NPR', 'Bloomberg', 'Reuters', 'Peninsula On-line', 'Washington Examiner', 'NBCNews.com', 'BGR News via Yahoo! News', 'The New Indian Express', 'BBC News', 'Business Insider via Yahoo! Finance', 'Daily Kos', 'Windows Central', 'BBC News', 'Foreign Policy (blog)', 'The Spokesman-Review', 'Fox News', 'Courier Mail', 'Daily Signal', 'Reuters', 'Scoop.co.nz (press release)', 'Daily Signal', 'New York Times', 'The Brown Daily Herald', 'New Straits Times via Yahoo! Singapore News', 'Forbes', 'NPR', 'Forbes', 'Sydney Morning Herald', 'AllAfrica.com', 'WinBeta', 'Center for Research on Globalization', 'Jewish Telegraphic Agency', 'kwwl.com', 'UPI.com', 'WDAM-TV', 'Business Insider via Yahoo! Finance', 'U.S. EPA.gov (press release)', 'Deseret News', 'PC Magazine', 'GeekWire', 'BBC News', 'Irish Independent', 'Haaretz', 'Seattle Times', 'InfoWorld', 'New York Times', 'Forbes', 'Lifehacker Australia', 'YIBADA English', 'ATTN', 'Bloomberg', 'Forbes', 'Business Insider via Yahoo! Finance', 'Sydney Morning Herald', 'gulfnews.com', 'Bloomberg via Yahoo! Finance', 'Associated Press via Yahoo UK & Ireland Finance', 'Lowell Sun', 'The Verge via Yahoo! News', 'ChristianToday', 'Balitang America', 'Money Magazine', 'NorthJersey.com', 'BetaNews', 'Reason', 'The Register', 'CBC.ca', 'The Tech Portal', 'PC Magazine', 'gulfnews.com', 'CBC via Yahoo Canada News', 'SBS', 'Herald Scotland', 'Forbes', 'The Medina County Gazette', 'Sputnik International', 'The Economist (blog)', 'CNN', 'Ars Technica', 'CRN', 'Bloomberg', 'CityMetric', 'The Canadian Press via Yahoo Canada News', 'Northumberland Gazette', 'Sputnik International', 'Economic Times', 'Reuters UK', 'CBS News', 'Bloomberg', 'Economic Times', 'USA TODAY', 'The Heights', 'Detroit Free Press', 'MarketWatch via Yahoo Canada Finance', 'ABC News', 'Asia Times', 'gulfnews.com', 'MTV.com', 'The Independent', 'WAFA - Palestine News Agency', 'FXStreet', 'SC Magazine UK', 'ZDNet', 'Windows Central', 'Shanghai Daily (subscription)', 'China.org.cn', 'CNBC', 'Jerusalem Post Israel News', 'The Record', 'MIS Asia', 'AFP via Yahoo! India News', 'ABC News', 'mySanAntonio.com', 'Reuters via Yahoo UK & Ireland Finance', 'Reuters', 'Bloomberg', 'Ars Technica', 'Aljazeera.com', 'BusinessTech', 'WAFA - Palestine News Agency', 'CNN', 'Business Standard', 'US 99.5', 'Hot Air', 'ETF Daily News', 'Business Insider', 'Tech Times', 'The Diplomat', 'Middle East Eye', 'Morning Star Online', 'WAFA - Palestine News Agency', 'Reuters', 'The Spokesman-Review', 'Bearing Arms', 'Inquirer.net', 'Attack of the Fanboy', 'South China Morning Post', 'The Register', 'AFP via Yahoo! India News', 'ZDNet', 'Al Jazeera via Yahoo UK & Ireland News', 'New York Times', 'Fortune', 'Ubergizmo', 'American Thinker (blog)', 'CNN', 'Thurrott.com (blog)', 'The Inquisitr', 'TechnoBuffalo', 'TheBlaze.com', 'Los Angeles Times', 'NPR', 'KLTV 7 Tyler', 'www.worldbulletin.net', 'IBNLive', 'Business Mirror', 'Business Insider Australia', 'Metro TV News', 'Mashable', 'Christian Post', 'Washington Examiner', 'CNN', 'CNBC', 'Washington Times', 'New York Times', 'WAFA - Palestine News Agency', 'Mirror.co.uk', '12news.com', 'International Business Times UK', 'KSDK.com', 'WCSH-TV', 'PRWeb', 'Daily Sun', 'PayScale Career News (blog)', 'New York Times', 'TechRadar', 'PR Newswire (press release)', 'ABC 7 Gulfshore News', 'USA TODAY', 'The Washington Times', 'Budapest Business Journal', 'MENAFN', 'Palestine News Network', 'Associated Press via Yahoo! Finance', 'RushLimbaugh.com', 'The Register-Guard', 'WMPoweruser.com', 'New York Times', 'Q13 FOX', 'Palestine Herald Press', 'HSUS News (blog)', 'The Weekly Standard (blog)', 'Daily Signal', 'Tallahassee.com', 'NewsOK.com', 'Indianapolis Star', 'The Jewish Press', 'The Hill (blog)', 'Computer World Australia', 'U.S. News & World Report', 'The Sunday Times', 'The Next Web', 'Washington Free Beacon', 'ZDNet', 'BBC News', 'The Guardian', 'WND.com', 'BetaNews', 'KCBD-TV Lubbock', 'The Japan Times', 'Reuters via Yahoo! News', 'The New Zealand Herald', 'FT Alphaville (registration)', 'Quartz', 'WCVB Boston', 'ABC News', 'Politico', 'Smarter Analyst', 'Western Journalism', 'PerezHilton.com', 'The Hill', 'Sky News via Yahoo Canada News', 'WalesOnline', 'Ubergizmo', 'Reuters', 'Market Realist via Yahoo! Finance', 'WinBeta', 'Business Insider', 'CNBC', 'Bloomberg', 'The CT Mirror', 'New York Post', 'Whitehouse.gov (press release)', 'Daily Bruin', 'WAFA - Palestine News Agency', 'National Journal', 'The ', 'BBC News', 'Chicago Tribune', 'NPR', 'PCWorld', 'Washington Post', 'Daily Beast', 'Reuters via Yahoo UK & Ireland Finance', 'Russian Information Agency Novosti', 'Irish Times', 'Reuters', 'Association France Palestine Solidarit\x9d\x9d', 'Southern Political Report', 'Bloomberg', 'TechnoBuffalo', 'The Register', 'Manufacturing.net', 'The Guardian', 'ABC News', 'Sify News', 'The Moose Jaw Times Herald', 'CBC.ca', 'Business Spectator', 'EE Times', 'AsiaOne', 'Computer Business Review', 'Gothamist', 'WJTV', 'Greensboro News & Record', 'Huffington Post', 'Economic Times', 'PoliticusUSA', 'The Hill', 'This is Money', 'Forward', 'International Business Times', 'MarketWatch', 'Breitbart News', 'Lifestyles', 'The Star Online', 'nwitimes.com', 'The Exponent Telegram (press release) (registration)', 'Boston Herald', 'New York Times', 'Scoop.co.nz (press release)', 'RenewEconomy', 'Ubergizmo', 'Nasdaq', 'The New Zealand Herald', 'Japan Today', 'Express.co.uk', 'Associated Press via Yahoo! News', 'Nikkei Asian Review', 'CNBC', 'Washington Times', 'Intifada Palestine', 'AFP Relax via Yahoo! Philippines News', 'SITE Intelligence Group (subscription)', 'Info-Palestine', 'Newsweek', 'WinBeta', 'Tech Times', 'PR Web (press release)', 'Digital Trends via Yahoo! Sports', 'New York Magazine', 'VR World', 'BuzzFeed News', 'Weyburn Review', 'Forbes', 'DefenseNews.com', 'Broadcasting & Cable', 'New Zealand Herald', 'Focus Taiwan News Channel', 'Daily Caller', 'The Verge', 'MarketWatch', 'American Enterprise Institute', 'Raw Story', 'Bitbag', 'Kuwait News Agency', 'Belfast Telegraph', 'Breitbart News', 'Anchorage Daily News', 'CBS 19 Tyler', 'K24 TV', 'Daily Mail', 'nwitimes.com', 'Zacks.com', 'Algemeiner', 'Bloomberg Big Law Business', 'InformationWeek', 'Digital Trends via Yahoo! Sports', 'Free Malaysia Today', 'Nikkei Asian Review', 'Redmondmag.com', 'Your Middle East', 'euronews', 'PRI', 'Manila Bulletin', 'Reuters', 'San Antonio Express-News (subscription)', 'Wall Street 24', 'U.S. News & World Report', 'Fox News', 'Reuters', 'Arkansas Online', 'The Record', 'CNN', 'CNW Group via Yahoo Canada Finance', 'The Hill', 'Vanguard', 'Ars Technica', 'WMPoweruser.com', 'Engadget', 'mySanAntonio.com', 'Reuters via Yahoo! Finance', 'LinuxInsider.com', 'Fox News', 'Reuters via Yahoo! Finance', 'eWeek', 'Boing Boing', 'Bloomberg', 'Washington Free Beacon', 'CBS News', 'Reuters', 'Fox News', 'WDTV', 'Economic Times', 'Computerworld', 'Bloomberg', 'TechCrunch', 'JURIST', 'Firstpost', 'Radio New Zealand', 'The Wall Street Journal', 'Interfax', 'CBC.ca', 'Gizmodo', 'Forbes', 'Techdirt', 'Yahoo Tech', 'Al-Arabiya', 'Asbury Park Press', 'The Nation.', 'Manila Standard Today', 'The Guardian', 'Daily Caller', 'Washington Post', 'TIME', 'Daily Mail', 'TheStreet.com', 'IGN Xbox One Games', 'Vox', 'MSPoweruser.com', 'NewsOK.com', 'Economic Times', 'Christian Science Monitor', 'Contra Costa Times', 'FOX Business', '+972 Magazine', 'Windows Central', 'PR Newswire (press release)', 'Investorplace.com', 'Al-Arabiya', 'Business Standard', 'Engadget', 'WTHR', 'Yahoo Finance', 'MarketWatch', 'Bloomberg', 'WIRED', 'FXStreet', 'ABC Online', 'Telegraph.co.uk', 'Bloomberg', 'MSPoweruser.com', 'Washington Post', 'The Denver Post', 'Bloomberg', 'Digital Trends via Yahoo! News', 'Network World', 'Business Insider via Yahoo! Finance', 'China Daily', 'Globalnews.ca', 'Motherboard', 'Daily Kos', 'ETTelecom.com', 'Neowin', 'Channel NewsAsia', 'Forbes', 'ABC Online', 'International Middle East Media Center', 'Seeking Alpha', 'VentureBeat', 'China Daily', 'groovyPost', 'The Business Times Singapore', 'The Star Online', 'Huffington Post', 'Washington Post', 'The Register', 'Seeking Alpha', 'Reuters via Yahoo! Finance', 'V3.co.uk', "The People's Voice", 'Ars Technica', 'The Australian Financial Review', 'ZDNet', 'Sky News via Yahoo Canada News', 'Intifada Palestine', 'ABC News', 'The Guardian', 'The Wall Street Journal', 'The Rock Hill Herald', 'Engadget', 'Breitbart News', 'Good Morning America via Yahoo! News', 'WinBeta', 'http://wales.gov.uk/', 'Livemint', 'Fox News', 'Premium Times', 'CTV News', 'The Business Times Singapore', 'Bloomberg via Yahoo! Finance', 'News Oracle', 'TheStreet.com', 'ecns', 'Jackson Clarion Ledger', 'The Hill', 'New York Times', 'KMBC Kansas City', 'Times LIVE', 'RT', 'ABC News', 'Press-Enterprise', 'International Business Times', 'DIGITALLOOK', 'New Vision', 'The Register', 'KARE', 'TIME', 'Thurrott.com (blog)', 'Co.Design', 'NBCNews.com', 'International Herald Tribune', 'Marketwired via Yahoo! Finance', 'YourStory.com', 'The Times of Israel', 'New Zimbabwe.com', 'New York Magazine', 'NBCNews.com', 'Associated Press via Yahoo! Finance', 'AsiaOne', 'Florida Times-Union', 'NBCNews.com', 'The Fresno Bee', 'MSPoweruser.com', 'The Boston Globe', 'CoinTelegraph', 'The Independent', 'Forbes', 'Business Standard', 'Vancity Buzz', 'Kaiser Family Foundation', 'Economic Times', 'The Straits Times', 'Newsmax', 'U.S. News & World Report (blog)', 'Free Malaysia Today', 'The Siasat Daily', 'Daily Caller', 'Cond\x9d\x9d Nast Traveler', 'Redmond Channel Partner', 'Haaretz', 'GMA News Online', 'Bloomberg', 'Philippine Star', 'Bearing Arms', 'The Daily Vox (blog)', 'Wall Street Journal', 'The Guardian', 'Reuters', 'Network World', 'Computerworld', 'WAFA - Palestine News Agency', 'Digital Trends via Yahoo! Sports', 'TASS', 'Washington Times', 'The Daily Reckoning', 'Mail & Guardian Online', 'Eurasia Review', 'PRWeek', 'Motley Fool', 'Reuters via Yahoo Maktoob News', 'New York Magazine', 'TweakTown', 'The Atlantic', 'Dezeen', 'WPRI 12 Eyewitness News', 'Financial Times', 'The Standard', 'VentureBeat', 'The Manila Times', 'The Indian Express', 'Marketwired (press release)', 'ZDNet', 'BBC News', 'RTE.ie', 'Malaysiakini (subscription)', 'Times of India', 'Christian Science Monitor', 'Hot Air', 'MarketWatch', 'China Daily', 'USA TODAY', 'Reuters', 'Bloomberg', 'Waco Tribune-Herald', 'Nikkei Asian Review', 'Voice of America', 'AFP via Yahoo! New Zealand News', 'gulfnews.com', 'PC World', 'CBS News', 'Forbes', 'PCWorld', 'Los Angeles Times', 'HotNewHipHop', 'News4C', 'Economic Times', 'Associated Press via Yahoo! Singapore Sports', 'The Times of Israel', 'The Independent', 'The Wall Street Journal', 'Alphr', 'International Business Times via Yahoo UK & Ireland News', 'Ars Technica', 'fox6now.com', 'Reason (blog)', 'Reuters via Yahoo! News', 'WND.com', 'WOWT', 'Business Standard', 'Daily Mail', 'Palestine News Network', 'Breitbart News', 'Chicago Daily Herald', 'ZDNet UK', 'AFP via Yahoo! India News', 'Amigobulls', 'ZDNet', 'Benzinga via Yahoo! Finance', 'Citizen TV (press release)', 'The Herald', 'Fortune', 'MSPoweruser.com', 'News24', 'El Watan', 'Business Mirror', 'AFL-CIO (blog)', 'ABC News', 'TODAYonline', 'Japan Today', 'RTE.ie', 'Daily News & Analysis', 'Business News Americas (subscription)', 'The Inquirer', 'WinBeta', 'New York Post', 'GameSpot', 'The Next Web', 'The Guardian', 'Nation News', 'The Washington Times', 'Scoop.co.nz (press release)', 'The Baltic Course', 'New York Times', 'Daily Caller', 'PR Newswire (press release)', 'CBC.ca', 'Huffington Post', 'Daily Beast', 'DNA India', 'TODAYonline', 'Sky News via Yahoo Canada News', 'Daily Caller', 'Economic Times', 'StartupSmart', 'The Denver Post', 'The Boston Globe', 'KETV 7 Omaha', 'CNN', 'Reuters via Yahoo! Finance', 'CNSNews.com (blog)', 'Khaleej Times', 'Omaha World-Herald', 'BBC News', 'Morning Journal News', 'BLABBERMOUTH.NET', 'Daily Mail', 'Jakarta Post', 'AllAfrica.com', 'Sleepy Eye Herald Dispatch', 'Business Wire via Yahoo! Finance India', 'Komando', 'Hollywood Life', 'PR Newswire via Yahoo! Finance', '660 News', 'The Australian (subscription)', 'KTRK-TV', 'EurActiv', 'Car and Driver (blog)', 'Fast Company', 'Globalnews.ca', 'Science Daily', 'The Mary Sue', 'Mother Jones', 'Computing.co.uk', 'The Guardian', 'CNBC', 'The National', 'Arab News', 'ENPI Info Centre', 'Washington Free Beacon', 'Reuters', 'Silicon Valley Business Journal', 'Buenos Aires Herald', 'Bloomberg', 'USA TODAY', 'Los Angeles Times', 'CRN - UK', 'CNN Money', 'fox6now.com', 'InformationWeek', "Investor's Business Daily", 'The Hill (blog)', 'Boston.com', 'CounterPunch', 'New York Post', 'Town Hall', 'The Boston Globe', 'Automotive News', 'Computer World Australia', 'Appeal-Democrat', 'Deutsche Welle', 'Eater Seattle', 'The Huffington Post', 'Bloomberg', 'CNN', 'CBC.ca', 'CMSWire', 'The Wall Street Journal', 'Pacific Daily News', 'CNW Group via Yahoo! Finance', 'Breitbart News', 'NorthJersey.com', 'Gatestone Institute', 'Reuters', 'New York Times', 'Breitbart News', 'GreenBiz', 'Associated Press via Yahoo! Finance', 'IBNLive', 'The Guardian', 'Engadget', 'Financial Times', 'Investopedia', 'U.S. News & World Report', 'The Verge via Yahoo Canada News', 'Irish Times', 'PRWeb', 'Channel NewsAsia', 'Associated Press via Yahoo UK & Ireland News', 'The Independent', 'DunyaNews Pakistan', 'Times of India', 'WTVC', 'Al-Bawaba', 'The Boston Globe', 'BDlive', 'Fox News', 'WFAA', 'PC Magazine', 'Mmegi Online', 'New York Times', 'PSFK (blog)', 'ABC News', 'Beaumont Enterprise', 'CNN', 'Kennebec Journal & Morning Sentinel', 'Telegraph.co.uk', 'Outlook India', 'Accuracy In Media', 'Manila Bulletin', 'Reuters', 'The Register', 'SuperSite for Windows', 'PCWorld', 'Q13 FOX Seattle', 'MarketWatch', 'Raw Story', 'USA TODAY', 'AAP via Yahoo! New Zealand Finance', 'ABC News', 'Minneapolis-St. Paul Star Tribune', 'BDlive', 'Daily Caller', 'TASS', 'DNA India', 'CNBC', 'The Scotsman', 'Daily Beast', 'Washington Examiner', 'WIRED', 'Forbes', 'The Independent', 'Fort Worth Star Telegram (blog)', 'Daily Beast', 'Xinhua', 'Reuters via Yahoo! Finance', 'TheBlaze.com', 'The Borneo Post', 'Digital Trends', 'Economic Times', nan, 'Times Record News', 'MarketWatch', 'The White House (blog)', 'Grand Forks Herald', 'Deutsche Welle', 'BGR', 'Vanguard', 'ABC News', 'AAP via Yahoo! New Zealand Finance', 'seattlepi.com', 'NPR', 'Firstpost', 'ABC News', 'Killeen Daily Herald', 'CNNMoney', 'Voice of America', 'Daily Mail', 'Neowin', 'Town Hall', 'The Fresno Bee', 'PC World', 'Business Wire (press release)', 'The Manila Times', '9news.com.au', 'Press Trust of India', 'Pakistan Observer', 'CoStar Group', 'Business Insider', 'The Hill (blog)', 'nwitimes.com', 'Fortune', 'Forbes', 'Canada.com', 'Bloomberg', 'Toronto Star', 'Economic Times (blog)', 'The Daily Star', 'WISN Milwaukee', 'Realtor.com News', 'The Guardian', 'Huffington Post Canada', 'Yahoo News Digest', 'Cherry Hill Courier Post', 'The Business Times Singapore', 'Asia Times', 'InfoWorld', 'Economic Times', 'Whitehouse.gov (press release)', 'Palestine Herald Press', 'Toledo Blade', 'Bloomberg', 'The Christian Science Monitor', 'Wall Street Journal', 'The Canadian Press via Yahoo Canada Finance', 'Reuters via Yahoo! News', 'Yahoo News', 'E-Commerce Times', 'Jerusalem Post Israel News', 'Daily Beast', 'OS News', 'Huffington Post', 'dailytelegraph.com.au', 'New York Times (blog)', 'Ghacks Technology News', 'VOA Zimbabwe', 'AllAfrica.com', 'Town Hall', 'BetaNews', 'NewsBusters (blog)', 'Animation World Network', 'New York Times', 'euronews', 'ABC News', 'The Straits Times', 'AFP via Yahoo! News', 'rediff.com', 'EurActiv', 'The Star Online', 'eWeek', 'Foreign Policy (blog)', 'Mondoweiss', 'Independent Online', 'CNN', 'Zacks via Yahoo! Finance', 'Channel Pro', 'Whitehouse.gov (press release)', 'Thomson Reuters Foundation', 'South China Morning Post (subscription)', 'The Diplomat', 'The New Indian Express', 'USA TODAY', 'Minneapolis-St. Paul Star Tribune', 'Stuff.co.nz', 'The New Zealand Herald', 'Associated Press via Yahoo! Singapore Sports', 'InfoWorld', 'AppAdvice', 'EconoMonitor (blog)', 'Christian Post', 'NBCNews.com', 'Business Insider via Yahoo! Finance', 'ENPI Info Centre', 'Fox News', 'International Business Times', 'Muncie Star Press', 'WND.com', 'Bloomberg', 'International Business Times', 'Telegraph via Yahoo UK & Ireland Finance', 'Digital Trends via Yahoo! Sports', 'Big News Network.com', 'DailyFX via Yahoo! New Zealand Finance', 'Computerworld', 'Chicago Sun-Times', 'Algemeiner', 'Time Magazine', 'Associated Press via Yahoo! Finance', 'PC World', 'Washington Post', 'AFP via Yahoo! News', 'Evening Standard', 'Nasdaq', 'Christian Post', 'Windows Central', 'Press & Sun-Bulletin', 'Truth-Out', 'TheBlaze.com', 'The Zimbabwe Standard', 'NewsBusters (blog)', 'Associated Press via Yahoo! News', 'KTRE Lufkin and Nacogdoches', 'NDTV', 'gulfnews.com', 'ZDNet', 'Politico', 'Reuters', 'IT News Africa', 'KXXV News Channel 25', 'New York Times', 'The Indian Express', 'Arab News', 'ABC News', 'Honolulu Star-Advertiser', 'ABC News', 'Bangladesh News 24 hours', 'The Motley Fool', 'The Business Times Singapore', 'WinBeta', 'ComputerWeekly.com', 'Din Merican', 'CBSSports.com', 'Irish Examiner', 'Times of Malta', 'Fortune', 'The Globe and Mail (subscription)', 'Cloud Tech', 'FrontPage Magazine', 'The Times of Israel (blog)', 'Slate Magazine', 'Yahoo News', 'Roll Call (registration) (blog)', 'NAIJ.COM', 'Softpedia News (blog)', 'Economic Times', 'The Business Times Singapore', 'NPR', 'International Business Times via Yahoo UK & Ireland News', 'Digital Trends via Yahoo! Finance', "Crain's Detroit Business", 'New York Daily News', 'Town Hall', 'Yahoo Finance', 'Associated Press via Yahoo! Finance', 'RTE.ie', 'PC World', 'The Daily Star', 'Wall Street Journal (blog)', 'Digital Trends', 'ZDNet', 'The Independent', 'Nikkei Asian Review', 'Huffington Post', ' ', 'Business Insider', 'Business Insider', 'TechnoBuffalo', 'Reuters', 'Sunday Observer', 'The Hill', 'SlashGear', 'Windows Central', 'Associated Press via Yahoo! Philippines Sports', 'Nikkei Asian Review', 'ANSAmed', 'India Today', 'NJ.com', 'Gamepur', 'Reuters', 'The Australian', 'Lifehacker Australia', 'WinBeta', 'Solomon Star', 'WAFA - Palestine News Agency', 'CNN', 'AllAfrica.com', 'FOX 43 Harrisburg', 'Stuff.co.nz', 'The Borneo Post', 'CNN Money', 'CBC.ca', 'USA TODAY', 'Independent Online', 'New York Times', '9news.com.au', 'CNET UK', 'Economic Times', 'Fox News', '580 CFRA Radio', 'CNN', '+972 Magazine', 'Politico', 'TIME', 'MSPoweruser.com', 'The Guardian', 'Wall Street Journal', 'PR Newswire via Yahoo! Finance', 'Outlook India', 'BBC News', 'Reuters via Yahoo! Finance', 'WGAL 8 Susquehanna Valley', 'WMPoweruser.com', 'Digital Trends', 'KLTV 7 Tyler', 'Bloomberg', 'Telegraph.co.uk', 'New York Post', 'The Fiscal Times', 'Reuters', 'Bitcoinist.net', 'Newsweek via Yahoo UK & Ireland News', 'The Hill', 'ABC News', 'Press TV', 'Reuters via Yahoo UK & Ireland News', 'The National', 'Reuters UK', 'Market Watch', 'Reuters via Yahoo! Finance', 'KTRE Lufkin and Nacogdoches', 'Business Insider via Yahoo! Finance', 'Business Insider UK', 'Reuters', 'Seeking Alpha', 'RealClearPolitics', 'Business Insider', 'Reuters via Yahoo! News', 'CNBC', 'WinBeta', 'MTV.com', 'Daily Mail', 'New Zealand Herald', 'PCWorld', 'Fortune', 'EcoWatch', 'Newsweek', '9 to 5 Mac', 'Business Insider', 'Reuters via Yahoo! News', 'Vanguard', 'Phandroid.com', 'Breitbart News', 'azcentral.com', 'Daily Caller', 'Honolulu Star-Advertiser', 'Scientific American', 'The Verge', 'Forbes', 'Bloomberg', 'Reuters via Yahoo! News', 'Bloomberg', 'InfoWorld', 'ZDNet', 'The Manila Times', 'TheBlaze.com', 'VietNamNet Bridge', 'WMPoweruser.com', 'CBS News', 'Washington Times', 'Yahoo Finance', 'AgWeb', 'MSNBC', 'The Star', 'Forbes', 'Toronto Sun', 'Kashmir Watch', 'The Washington Times', 'FIFA.com', 'Kathimerini', 'Forbes', 'Business Insider via Yahoo Canada Finance', 'Destructoid', 'Telegraph.co.uk', 'WCVB Boston', 'AFP via Yahoo! India News', 'Associated Press via Yahoo! News', 'U.S. News & World Report', 'The Register', 'BBC News', 'KTVN', 'Corn and Soybean Digest (blog)', 'Windows Central', 'Financial Times', 'New Jersey 101.5 FM Radio', 'Reuters via Yahoo Maktoob News', 'USA TODAY', 'Business Insider', 'The Worldfolio', 'ScoopWhoop', 'Washington Post', 'The Times of Israel', 'RT', 'Mondoweiss', 'Associated Press via Yahoo! Finance', 'The Indian Express via Yahoo! India News', 'Forbes', 'Capital FM Kenya (press release) (blog)', 'Huffington Post Canada', 'New York Post', 'The Australian', 'Vogue.com', 'Wall Street Journal', 'gulfnews.com', 'New York Times', 'Daily Kos', 'The Globe and Mail (subscription)', 'The Seattle Times', 'USA TODAY', 'BetaNews', 'New York Times', 'GalleyCat', 'Multi-Housing News', 'The Hill', 'Wichita Eagle', 'The Motley Fool', 'People Magazine', 'Nyasa Times', 'The Register', '9 to 5 Mac', 'Bloomberg', 'Politico', 'Economic Times', 'AMEinfo', 'Associated Press via Yahoo UK & Ireland News', 'Las Vegas Review-Journal', 'Business Insider', 'Huffington Post Canada', 'ZDNet', 'St. Cloud Times', 'BetaNews', 'CNNMoney', 'Market Realist via Yahoo! Finance', nan, 'CNBC', 'International Business Times via Yahoo UK & Ireland News', 'Bloomberg via Yahoo! Finance', 'Economic Times', 'Channel NewsAsia', 'WinBeta', 'EU News', 'International Business Times', 'Us Weekly', 'Bloomberg via Yahoo! Finance India', 'The Guardian', 'The New Zealand Herald', 'Financial Times', 'The Hill', 'New York Post', 'TechRadar', 'VOA News', 'The Australian Financial Review', 'Business Insider via Yahoo! Finance', 'The Daily Vox (blog)', 'BBC News', 'East Asia Forum', 'Palestine Herald Press', 'Fox News', 'Hindu Business Line', 'Reuters via Yahoo! Sports', 'SegmentNext', 'Datamation', 'Ventures Africa', 'Chicago Tribune', 'ZDNet UK', 'LinuxInsider.com', 'ExecutiveBiz (blog)', 'BBC News', 'Mohave Daily News', 'Intifada Palestine', 'Sky News via Yahoo UK & Ireland News', 'WXXI News', 'Los Angeles Times', 'Cops 2.0', 'Reuters', 'Toronto Sun', 'ABC News', 'EconomyWatch.com', 'ZDNet', 'Consumer Reports via Yahoo! Finance', 'Quartz', 'Human Rights Watch', 'The Week Magazine', 'Daily Times', 'Daiji World', 'Reuters via Yahoo! News', 'Daily Caller', 'Los Angeles Times', 'Wall Street Journal', 'Bleacher Report', 'Breitbart News', 'News & Observer', 'Minnesota Public Radio News', 'Boston Herald', 'Financial Times', 'New York Times', 'The Guardian', 'Washington Post', 'San Angelo Standard Times', 'ABC News', 'DNA India', 'Fast Company Magazine', 'Gizmodo', 'ABC 7 Chicago', 'Reason (blog)', 'Bloomberg View', 'The Fiscal Times', 'MSPoweruser.com', 'Irish Examiner', 'CNN', nan, 'CNN', 'Morning Star Online', 'The Globe and Mail', 'CRN Australia', 'Politico (blog)', 'Firstpost', 'NK News', 'Bloomberg View', 'Business Insider', 'ABC News', 'CTR', 'Barre Montpelier Times Argus', 'Emirates 24|7', 'The National', 'Edmonton Journal', 'Reuters', 'Global News', 'Fortune', 'Los Angeles Times', 'Bloomberg', 'Neowin', 'Forbes', 'Palestine Herald Press', 'Newsmax', 'OCRegister', 'Breitbart News', 'gulfnews.com', 'WAFF', 'Al-Fanar Media', 'Associated Press via Yahoo! News', 'The Punch', 'CBC.ca', 'Haaretz', 'Associated Press via Yahoo! News', 'BDlive', "Barron's (blog)", 'Vox', 'NT News', 'Ventura County Star', 'NAIJ.COM', 'Western Journalism', 'MSDynamicsWorld.com', 'Vancouver Sun', 'International Business Times via Yahoo UK & Ireland News', 'Huntsville Item', 'PR Newswire (press release)', 'Business Insider via Yahoo Canada Finance', 'Economic Times', 'Channel News Asia', 'Washington Post', 'CNBC', 'mySanAntonio.com', 'Haaretz Daily', 'Softpedia News', 'Palm Beach Post', 'Washington Post', 'PC World', 'International Business Times', 'International Business Times', 'Greek Reporter', 'Bloomberg', 'New York Post', 'New York Times', 'Business Standard', 'Mac Rumors', 'CSPnet.com', 'KLTV', 'Yale Environment 360', 'The Register', 'Times of India', 'Times of India', 'ABC News', 'Hollywood Reporter', 'Credit.com via Yahoo! Finance', 'Reuters', 'Triple Pundit (registration) (blog)', 'Associated Press via Yahoo! Finance', 'Inc.com', 'Whitehouse.gov (press release)', 'Bloomberg', 'Recode', 'Windows Report', 'Chicago Tribune', 'ZDNet', 'Chicago Tribune', 'Project Syndicate', 'Financial Express', 'Fortune', 'The Seattle Times', 'Deseret News', 'TPM', 'The Indian Express', 'BetaNews', 'The Weekly Standard (blog)', 'New Jersey Herald', 'Grist', 'The Inquirer', 'International Business Times', 'Power Line (blog)', 'The Express Tribune', 'KLTV 7 Tyler', 'SPAMfighter News (press release)', 'The Globe and Mail', 'The Times (subscription)', 'Digital Trends via Yahoo! Sports', 'Express.co.uk', 'PolitiFact', 'Mondoweiss', 'CNBC (subscription)', 'Fox News', 'The Register', 'Telegraph.co.uk', 'UPI', 'Economic Times', 'Sky News', 'MSNBC', 'American Spectator', 'Bearing Arms', 'CNN International', 'The New Indian Express', 'CNN International', 'AFP Relax via Yahoo! Philippines News', 'Twinfinite', 'Huffington Post', 'Press TV', 'Salt Lake Tribune', 'AFP via Yahoo UK & Ireland News', 'AFP via Yahoo! India News', 'The Canadian Press via Yahoo Canada News', 'Salon', 'Neurogadget', 'International Business Times via Yahoo UK & Ireland News', 'Bloomberg', 'Business Recorder (press release) (registration) (blog)', 'Christian Science Monitor', 'The Hindu', 'The Japan Times', 'Excalibur Online', 'Fox News', 'Opposing Views', 'The Hindu', 'Ars Technica', 'ZDNet', 'Premium Times', 'Wall Street Journal', 'NOLA.com', 'Dissident Voice', 'Bloomberg via Yahoo! Finance', 'V3.co.uk', 'Play the Game', 'Yahoo News UK', 'The Globe and Mail (subscription)', 'NT News', 'Fort Wayne Journal Gazette', 'AOL News', 'PC World', 'Yahoo Finance', 'Forbes', 'OPEN MINDS (registration)', 'CNBC', 'The National', 'Fox News', 'TIME', 'CNN', 'CTV News', 'Aljazeera.com', 'KTVB.com', 'Salt Lake Tribune', 'BetaNews', 'Marketwired via Yahoo! Finance', 'Kuwait News Agency', 'CNBC', 'Scoop.co.nz', 'Reuters', 'TheStreet.com', 'WinBeta', 'Yahoo News', 'Reuters', 'YLE News', 'The Nation - Thailand's English news', 'Vanguard', 'Midland Reporter-Telegram', 'CNN', 'Inquirer.net', 'Human Rights Watch', 'The Seattle Times', 'MSPoweruser.com', 'Daily Caller', 'Huffington Post', 'BetaNews', 'New York Times', 'CNET UK', 'Waste Management World', 'Washington Times', 'Evening Standard', 'WinBeta', 'FXStreet', 'Reuters via Yahoo! Sports', 'Techcrunch', 'The Register', 'WND.com', 'Times LIVE', 'Bloomberg', 'Intelligence Online (subscription)', 'Reuters', 'Bloomberg', 'Bloomberg', 'NDTV', 'American Thinker (blog)', 'CNBC', 'WinBeta', 'Huffington Post', 'Telegraph.co.uk', 'ABC News', 'Digital Trends', 'Reuters via Yahoo! News', 'Bloomberg', 'The Chicago Maroon', 'TheStreet.com', 'Bidness ETC', 'Breitbart News', 'HQ Grande Prairie', 'Business Recorder', 'Business Insider Australia', 'Hindustan Times', 'Business Insider Australia', 'IndustryWeek', 'New York Times', 'RenewEconomy', 'The Globe and Mail', 'The Christian Science Monitor', 'Kashmir Life', 'National Review Online', 'New York Times', 'Nasdaq', 'BetaNews', 'gulfnews.com', 'Vanguard', 'PC World', 'New Bern Sun Journal', 'Fortune', 'Nasdaq', 'TASS', 'Associated Press via Yahoo! News', 'AsiaOne', 'FOX30 / CBS47 Jacksonville', 'WBTV Charlotte', 'New York Post', 'NDTV', 'ARNnet', 'Digi Times', 'CBS News', 'Algemeiner', 'The Christian Science Monitor', 'Fast Company', 'Irish Times', 'Jerusalem Post Israel News', 'Globalnews.ca', 'seattlepi.com', 'Network World', 'BetaNews', 'Business Insider via Yahoo! India News', 'Canada.com', 'Al Jazeera via Yahoo UK & Ireland News', 'The Guardian', 'WA today', 'Geek', 'Business Wire via Yahoo! Finance', 'TechRadar', 'New York Times', 'The Independent', 'Christian Science Monitor via Yahoo! News', 'Business Insider UK', 'The Guardian', 'PC World', 'CNBC (subscription)', 'www.worldbulletin.net', 'Arkansas Online', 'NBCNews.com', 'KRIS Corpus Christi News', 'Financial Post', 'Slate Magazine', 'Jerusalem Post Israel News', 'USA TODAY', 'Economic Times', 'Marketwired via Yahoo! Finance', 'PC World', 'International Business Times UK', 'The Guardian', 'PolitiFact', 'Bloomberg', 'NPR', 'BetaNews', 'Washington Post', 'Reuters UK', 'Washington Times', 'Computerworld', 'WinBeta', 'Washington Free Beacon', 'American Banker', 'TechNewsWorld.com', 'AFP via Yahoo Maktoob News', 'Middle East Monitor', 'BetaNews', 'UND The Dakota Student', 'New York Times', 'TechRadar', 'NBCNews.com', 'Fox News', 'India Today', 'Business Insider via Yahoo! Finance', 'Wall Street Journal (blog)', 'Malay Mail Online', 'CBC.ca', 'The Verge', 'CNN', 'Marketwired via Yahoo! Finance', 'AFP via Yahoo! News', 'Free Malaysia Today', 'Tech Times', 'CNN Money', 'Kuwait News Agency', 'AFP via Yahoo! India News', 'The Hereford Times', 'Huffington Post', 'SiliconANGLE', 'AllAfrica.com', 'BetaNews', 'Los Angeles Daily News', 'Sky News via Yahoo UK & Ireland Finance', ' ', 'NBCNews.com', 'AllAfrica.com', 'www.worldbulletin.net', 'TASS', 'Daily Mail', 'Forbes', 'AFP via Yahoo! News', 'The Hill', 'BDlive', 'ABC News', 'The Seattle Times', 'OregonLive.com', 'Jordan Times', 'Huffington Post', 'Al-Bawaba', 'Breitbart News', 'New York Times', 'ABC News', 'Redmondmag.com', 'BDlive', 'Quartz', 'Yahoo News UK', 'New Republic', 'Firstpost', 'PC Magazine', 'Charlotte Observer', 'International Business Times via Yahoo UK & Ireland News', 'NPR', 'OCRegister', 'CTV News', 'Runway Girl Network', 'Reuters via Yahoo! Finance', 'Stars and Stripes', 'Financial Times', 'The Manila Times', 'WHO-TV 13 Des Moines', 'Times of India', 'Breitbart News', 'ZDNet', 'Voice of America', 'Washington Times', 'Financial Times', 'Palestine News Network', 'The Inquisitr', 'Independent Online', 'Reuters', 'Neurogadget', 'WinBeta', 'Phone Arena', 'Newsweek', 'Zacks via Yahoo! Finance', 'New York Daily News', 'Business Insider via Yahoo! Finance', 'ABC News', 'Reuters', 'EFF', 'The News International', 'Stuff', 'Eastday.com', 'The Seattle Times', 'The Japan News', 'CTV News', 'www.worldbulletin.net', 'ABC News', 'ABC News', 'Gamasutra', 'Dawn', 'Reuters', 'Business 2 Community', 'Firstpost', 'IJ Review', 'TASS', 'Times Leader', 'CBS News', 'Claremore Daily Progress', 'CNN Money', 'Salon', 'TIME', 'Xinhua', 'Journal and Courier', 'Digital Trends via Yahoo! Sports', 'ABC News', 'InformationWeek', 'WAVY-TV', 'The Sydney Morning Herald', 'AFP via Yahoo! India News', 'Florida Times-Union', 'TechNewsWorld.com', 'Bloomberg', 'The Globe and Mail', 'Washington Post', 'The Record', 'CTV Calgary News', 'Associated Press via Yahoo Maktoob News', 'UD Daily', 'China Daily', 'The National Interest Online', 'Market Watch', 'The Verge', 'Press and Journal', 'New York Post', 'KTRE Lufkin and Nacogdoches', 'Press TV', 'New York Times Finance', 'WAFF 48 News Huntsville', 'United Nations', 'Economic Times', 'IT PRO', 'The Seattle Times', 'Chicago Tribune', 'Financial Post', 'The Guardian', 'Breitbart News', 'NBCNews.com', 'New York Times', 'GreenBiz', 'The Portugal News', 'Times of India', 'azcentral.com', 'New York Times', 'Stars and Stripes', 'The Inquirer', 'International Middle East Media Center', 'WinBeta', 'South China Morning Post', 'Hamilton Spectator', 'Inter Press Service', 'The Register', 'Wall Street Journal', 'cleveland.com', 'Arutz Sheva', 'ZDNet UK', 'Napa Valley Register', 'Motley Fool', 'Huffington Post', 'Jamaica Observer', 'Bleacher Report', 'ABC News', 'People Magazine', 'World Tribune', 'Quartz via Yahoo! Finance', 'Sydney Morning Herald', 'Irish Times', 'Runway Girl Network', 'AllAfrica.com', 'PCWorld', 'TheBlaze.com', 'Indianapolis Star', 'Automotive News', 'DailyPost Nigeria', 'CNN', 'Fox News', 'The Globe and Mail (subscription)', 'Winnipeg Free Press', 'WinBeta', 'MSNBC', 'Marketwired via Yahoo UK & Ireland Finance', 'Telegraph.co.uk', 'CNBC', 'MLive.com', 'Tech Insider (blog)', 'Breitbart News', 'Los Angeles Times', 'The Hill', 'Reading Eagle', 'Chicago Tribune', 'Digital Trends via Yahoo! Sports', 'Arutz Sheva', 'The Nation', 'NewsHounds (blog)', 'WND.com', 'Vox', 'Forbes', 'Newsday', 'Newsweek', 'Los Angeles Times', 'The Guardian', 'The Courier', 'Harvard Business Review', 'Reuters', 'CNN', 'News24', 'Forbes', 'Daily Signal', 'Financial Post', 'Morning Consult', 'Eurasia Review', 'TechRadar', 'Calgary Sun', 'Eyewitness News', 'The Australian (subscription) (blog)', 'Benzinga via Yahoo! Finance', 'AL.com', 'The Indian Express', 'WinBeta', 'The Times of Israel', 'KSNT (press release) (registration) (blog)', 'GSMArena.com', 'News24', 'International Business Times via Yahoo UK & Ireland News', 'Newsweek', 'American Thinker', 'Christian Science Monitor via Yahoo! News', 'AsiaOne', 'PR Newswire (press release)', 'Sky News via Yahoo Canada News', 'American Thinker (blog)', 'Quincy Herald-Whig', 'Scoop.co.nz', 'New York Times', 'Vanguard', 'Washington Post', 'Mondoweiss', 'Mondoweiss', 'Business Insider', 'CIO', 'ArmeniaNow.com', 'ArabianBusiness.com', 'The Hill (blog)', 'www.worldbulletin.net', 'Bluffton Today', 'Daily Journal', 'Seeking Alpha', 'The Washington Times', 'Softpedia News', 'Hot Air', 'CBS sports.com (blog)', 'InfoWorld', 'Profit Confidential', 'Info-Palestine', 'Liberation', 'International Business Times via Yahoo UK & Ireland News', 'Hurriyet Daily News', 'AFP via Yahoo! India News', 'U.S. News & World Report', 'Derby Telegraph', 'WAFA - Palestine News Agency', 'Market Realist via Yahoo Canada Finance', 'Business 2 Community', 'Forbes', 'Raw Story', 'iProgrammer', 'AOL News', 'Newschannel 6 Wichita Falls', 'The Nation', 'eWeek', 'Economic Times', 'Reuters UK', 'Reuters via Yahoo! News', 'Manila Bulletin', 'Bloomberg', 'Breitbart News', 'Nasdaq', 'Business Wire (press release)', 'Reuters', 'Economic Times', 'AFP via Yahoo!7 News', 'WAFA - Palestine News Agency', 'Seattle Times', 'The Canadian Press via Yahoo Canada Finance', 'The Australian Financial Review', 'AOL News', 'The Canadian Press via Yahoo Canada News', 'Truth-Out', 'The Star', 'Netimperative', 'Al Jazeera America', 'Inquirer.net', 'The Independent', 'Express.co.uk', 'CNET', 'Business Insider', 'TVNewser', 'Enough Project', 'Fast Company', 'The Register', 'International Solidarity Movement', 'rediff.com', 'Gallup', 'Huffington Post Canada', 'U.S. News & World Report', 'Northern Star', 'Business Insider', 'AFP via Yahoo! India News', 'Business Recorder', 'The Next Web', 'OCRegister', 'WFMYNews2.com', 'Chicago Tribune', 'Los Angeles Times', 'CainTV', 'Windows Central', 'Moneycontrol.com', 'Channel NewsAsia', 'Irish Times', 'eWeek', 'PR Newswire (press release)', 'CNN', 'Jakarta Post', 'CNNMoney', 'Associated Press via Yahoo! India News', 'The Wall Street Journal', 'Forbes', 'Reuters', 'PoliticusUSA', 'DCist.com', 'Politico', 'Southeast Asia GLOBE', 'Channel NewsAsia', 'The Province', 'TheCable', 'Jordan Times', 'Los Angeles Times', 'The Register', 'Sputnik International', 'Wall Street Journal', 'KLTV 7 Tyler', 'Reuters', 'SeeNews Renewables', 'Reuters UK', 'CBS Local', 'Bahrain News Agency', 'CBS News', 'Vanguard', 'The Australian Financial Review', 'New York Times', 'Huffington Post', 'MarketWatch', 'NPR', 'AllAfrica.com', 'Foreign Policy', 'Wall Street Journal', 'FXStreet', 'TechWeekEurope UK', 'InfoWorld', 'Bloomberg', 'Wall Street Journal', 'TechRadar', 'New Matilda', 'The Hill', 'Wall Street Journal', 'CNN', 'Reuters', 'KWTV News9', 'Manila Bulletin', 'AFP via Yahoo! News', 'Radio New Zealand', 'TheTower.org', 'www.worldbulletin.net', 'Design & Trend', 'Associated Press via Yahoo! Singapore Sports', 'GeekWire', 'Muscat Daily', 'Carroll County Times', 'FOX Business', 'Business Wire via Yahoo! Finance', 'ZDNet', 'Washington Post', 'Around the Rings (subscription)', 'CBS Local', 'Computing.co.uk', 'CFO', 'Bloomberg', 'People Magazine', 'The Globe and Mail', 'RushLimbaugh.com', 'Middle East Monitor', 'ABC News', 'Irish Times', 'DNA India', 'Wall Street Journal', 'New York Times', 'NDTV', 'ReadWrite', 'AFP via Yahoo! News', 'CNN', 'The Local.de', 'The Hill', 'Bangkok Post', 'New York Times', 'MIS Asia', 'International Business Times', 'ABC News', 'Amigobulls', 'The New Zealand Herald', 'Palestine Herald Press', 'TheBlaze.com', 'RadioFreeEurope/RadioLiberty', 'The Verge via Yahoo! News', 'Hellenic Shipping News Worldwide', 'The Daily Advertiser', 'The Diplomat', 'Associated Press via Yahoo! News', 'UPROXX via Yahoo! Sports', 'VentureBeat', 'USA TODAY', 'ISM', 'Fox News', 'Newsweel ME (satire) (press release) (blog)', 'Seattle Times', 'Times of India', 'Tech Times', 'World Bank Group', 'Bernama', 'Quartz', 'Dallas Morning News', 'Wall Street Journal', 'NDTV', 'WJXT Jacksonville', 'ABC News', 'NDTV', 'ZDNet', 'The Jewish Press', 'Sacramento Bee', 'Chicago Tribune', 'A.V. Club', 'Town Hall', 'FOX 8 New Orleans', 'Jeune Afrique', 'The Star', 'Channel News Asia', 'Consumer Reports via Yahoo! Finance', 'AFP via Yahoo!7 News', 'Network World', 'Campaign Asia-Pacific', 'economia', 'Huffington Post', 'BDlive', 'Times of India', 'Wired News', 'FOX 12 Oregon', 'Daily Beast', nan, 'FOX Business', 'Himalayan Times', 'The Province', 'Associated Press of Pakistan', 'Sputnik International', 'MSDynamicsWorld.com', 'CNN', 'TheBlaze.com', 'Transport Topics Online', 'WTAE Pittsburgh', 'CNN', 'Bloomberg via Yahoo! Finance', 'South Wales Argus', 'The Lawyer (registration)', 'Waging Nonviolence', 'New York Daily News', 'Hindustan Times', 'The Daily Progress', 'The Guardian', 'Wall Street Journal', 'Winnipeg Free Press', 'InfoWorld', 'Sunderland Echo', 'Daily Mail', 'Ars Technica', 'Reuters', 'Middle East Monitor', 'Washington Business Journal', 'teleSUR English', 'The Mercury', 'Cebu Daily News', 'The Independent', 'Sydney Morning Herald', 'Times of Malta', 'The Independent', 'Truth-Out', 'News24', 'snopes.com', 'Bloomberg', 'Press Association via Yahoo UK & Ireland News', 'Christian Science Monitor', 'VentureBeat', 'Washington Post (blog)', 'Business Insider', '+972 Magazine', 'Business Wire (press release)', 'InfoWorld', 'The Hindu', 'Independent Online', 'ITWeb', 'Economic Times', 'Mother Jones', 'China.org.cn', 'ZDNet', 'Bloomberg via Yahoo! Finance', 'Conservative Home', 'Eurasia Review', 'RealClearPolitics', 'Sacramento Business Journal', 'Digital Trends via Yahoo! Finance', 'Canada NewsWire (press release)', 'ABC News', 'Economic Times', 'Telegraph.co.uk', 'American Thinker (blog)', 'EuroNews', 'Entertainment Weekly', 'City A.M.', 'Digital Trends via Yahoo! News', 'Bright Green', 'Calgary Herald', 'Clapway', 'Mondoweiss', 'The Motley Fool', 'eNCA', 'TIME', 'JP Updates', 'Hawaii News Now', 'TASS', 'MakeUseOf', 'The Fresno Bee', 'Korea Times', 'Fortune', 'Engadget', 'Channel NewsAsia', 'PCWorld', 'KABC-TV Los Angeles', 'Daily Beast', 'Yahoo Finance', 'groovyPost', 'Gulf Times', 'Sky News via Yahoo UK & Ireland News', 'American Thinker (blog)', 'The Indian Express', 'Tempo.co', 'Washington Post', 'Palestine Herald Press', 'American Thinker', 'TMZ.com', 'Zacks via Yahoo! Finance', 'ABC News', 'Hindustan Times', 'Game Rant', 'Telegraph.co.uk', 'Re/code', 'Bloomberg', 'Latin American Herald Tribune', 'The National', 'USA TODAY', 'Al-Bawaba', 'Washington Times', 'AFP via Yahoo! News', 'The Star', 'Miami Herald', 'The Korea Herald', 'ABC News', 'The News', 'Al Bawaba', 'IT Business Edge (blog)', 'Purdue Agricultural Communications', 'ABC News', 'Triple Pundit (registration) (blog)', 'The Rock Hill Herald', 'Barron's Online', 'Yahoo News', 'ZDNet', 'Business Insider via Yahoo! Finance', 'Sun-Sentinel', 'Business Wire via Yahoo! Finance', 'News On 6 Tulsa', 'CNW Group via Yahoo Canada Finance', 'The Guardian', 'International Middle East Media Center', 'Business Insider via Yahoo! Finance', 'Wall Street Journal', 'SiliconANGLE (blog)', 'AAP via Yahoo! New Zealand Finance', 'Reason (blog)', 'NPR', 'The Japan Times', 'Bloomberg', 'The Nation Newspaper', 'Sky News', 'StepFeed', 'CNBC via Yahoo! New Zealand Finance', 'New York Times', 'Bloomberg', 'New York Times', 'Geek', 'Arutz Sheva', 'Deutsche Welle', 'The Register', 'USA TODAY', 'Vox', 'PC World', 'Liliputing', 'Los Angeles Times', 'Washington Free Beacon', 'BBC News', 'Herald Scotland', 'USA TODAY', 'Inquirer', 'New York Times', 'Washington Times', 'Xinhua', ' ', 'HardwareZone', 'Denver Post', 'Associated Press via Yahoo! News', 'Gilmer Mirror', 'Bulletin of the Atomic Scientists', 'Fox News', 'Yahoo Finance', 'The Zimbabwe Standard', 'Fortune', 'Hamilton Spectator', 'New York Times', 'Bangor Daily News', 'The News', '9 to 5 Google', 'CNN', 'CRN', 'Daily Caller', 'Business Insider via Yahoo UK & Ireland Finance', 'Business Wire (press release)', 'Liliputing', 'Reuters', 'WCVB Boston', 'The Daily Free Press', 'The Atlantic', 'ZDNet', 'ARNnet', 'gulfnews.com', 'Bay Area Indymedia', 'Telegraph via Yahoo UK & Ireland Finance', 'smallwarsjournal (blog)', 'Politico', 'NEWS.com.au', 'The Canadian Press via Yahoo Canada News', 'World Bank Group', 'Philly.com', 'BusinessDay', 'CNBC via Yahoo! Finance', 'AFP via Yahoo! News', 'Vanguard', 'Left Foot Forward', 'Yahoo Katie Couric', 'ABC Online', 'Huffington Post', 'New York Post', 'Nasdaq', 'Silicon Valley Business Journal', 'New York Daily News', 'Sydney Morning Herald', 'Manila Bulletin', 'Wall Street Journal (blog)', 'SalemNews.net', 'The Week Magazine', 'CBC.ca', 'Valley News', 'TASS', 'Economic Times', 'The Times of Israel', 'Associated Press via Yahoo! Singapore News', 'Telecompaper (subscription)', 'Forbes', 'KGBT-TV', 'The Hill', 'USA TODAY', 'Daily Mail', 'Washington Times', 'MSPoweruser.com', 'The Verge via Yahoo! News', 'Fortune', 'The Wall Street Journal', 'TechRadar', 'Business Insider', 'The Straits Times', 'Insurance Journal', 'Los Angeles Times', 'Financial Times', 'Computing', 'AFP via Yahoo! News', 'The Hill (blog)', 'Bloomberg via Yahoo! Finance', 'MSPoweruser.com', 'Mirror.co.uk', 'Power Line (blog)', 'NewsOK.com', 'MSPoweruser.com', 'Canada Free Press', 'ARNnet', 'Press TV', 'The Korea Herald', 'iClarified', 'The Verge', '9news.com.au', 'American Enterprise Institute', 'Equities.com', 'The Daily Pennsylvanian', 'The Verge', '89.3 KPCC', 'NOLA.com', 'Minneapolis-St. Paul Star Tribune', 'Wall Street Journal (blog)', 'WinBeta', 'New York Post', 'Washington Examiner', 'Nasdaq', 'The Independent', 'Shanghai Daily (subscription)', 'Washington Post', 'Engadget', 'CTV News', 'RT', 'Taipei Times', 'Jerusalem Post Israel News', 'NBC NEWS', 'AFP via Yahoo Maktoob News', 'The Verge', 'WINA AM 1070 (press release)', 'Business Wire (press release)', 'Microsoft - Channel 9', 'Politico', 'St. Augustine Record', 'Bloomberg', 'Reuters via Yahoo! News', 'Bidness ETC', 'KRDO', 'Daily Caller', 'Economic Times', 'USA TODAY', 'Yahoo Finance', 'Business Standard', 'VentureBeat', 'The Independent', "CP24 Toronto's Breaking News", 'Reuters', 'BGR News via Yahoo! News', 'Reuters', 'The Register', 'Boston Herald', 'Fortune', 'Business Insider via Yahoo! Finance', 'Deadline', 'Sydney Morning Herald', 'FIFA', 'Traverse City Record Eagle', 'Delmarva Daily Times', 'SC Magazine', 'Worcester Telegram', 'Reuters UK', 'Reuters', 'Digital Trends via Yahoo! News', 'The Star, Kenya', 'CNNMoney', 'ABC News via Yahoo! News', 'World Socialist Web Site', 'Politico', 'Business Insider', 'The Canadian Press via Yahoo Canada News', 'The Canadian Press via Yahoo Canada News', 'Huffington Post', 'Reuters', 'Quartz', 'Wall Street Journal', 'ABC News', 'Toowoomba Chronicle', 'Bloomberg BNA', 'Breitbart News', 'ABC Online', 'MSPoweruser.com', 'ForexLive', 'KPBS San Diego', 'CNET', 'CNBC via Yahoo! Finance', 'The Detroit News', 'CNBC', 'Bloomberg', 'Herald Scotland', 'Wall Street Journal (blog)', 'TheBlaze.com', 'NJ.com', 'WinBeta', 'USA TODAY', 'Deseret News', 'The Boston Globe', 'The Register', 'Daily Mail', 'CMSWire', 'Al Jazeera via Yahoo Maktoob News', 'The Inquisitr', 'South Bend Tribune', 'AllAfrica.com', 'Centre Daily Times', 'Bloomberg View', 'NDTV', 'Palestine Herald Press', 'KOAA.com Colorado Springs and Pueblo News', 'CNBC via Yahoo! New Zealand Finance', 'RollingStone.com', 'ABC News', 'TPM', 'AFP Relax News via Yahoo! News', 'Business Insider Australia', 'TPM', 'Tyler Morning Telegraph', 'ForexLive', 'The Straits Times', 'PR Newswire via Yahoo! Finance', 'Reuters', 'International Middle East Media Center', '680 News', 'SegmentNext', 'Hindustan Times', 'NewsdzeZimbabwe', 'WebProNews', 'Bloomberg via Yahoo! Finance', 'IBN live', 'The Times (subscription)', 'Business Insider Australia', 'Moneyweb.co.za', 'BGR News via Yahoo! News', 'The Australian (subscription) (blog)', 'Reuters', 'CNN Money', 'WOODTV.com', 'Wall Street Journal', 'Daily Times', 'WinBeta', 'AFP via Yahoo! India News', 'Economic Times', 'Associated Press via Yahoo! Philippines News', 'Toronto Sun', 'Computerworld', 'Intifada Palestine', 'Associated Press via Yahoo! News', 'Brandon Sun', 'TechCrunch', 'Reuters', 'FOX 43 Harrisburg', 'AFP via Yahoo! News', 'Daily Signal', 'DesMoinesRegister.com', 'Game Informer', 'WJXT Jacksonville', 'Los Angeles Times', 'WinBeta', 'Morning Journal News', 'DesMoinesRegister.com', 'Radio New Zealand', 'Bloomberg', 'KPRC Houston', 'Bloomberg', 'Voice of America', 'Times of India', 'IANS via Yahoo Maktoob News', 'Bloomberg', 'The Seattle Times', 'The Verge', 'MedPage Today', 'ITProPortal', 'Naharnet', 'Emirates 24|7', 'NorthJersey.com', 'Jakarta Post', 'The Inquirer', 'AFP via Yahoo!7 News', 'THISDAY Live', 'CNBC', 'Softpedia News', 'AFP via Yahoo! News', 'Voice of America', 'The Guardian', 'CBC.ca', 'Computerworld', 'NPR', 'New York Post', 'Reuters via Yahoo! Finance', 'Raw Story', 'PC World', 'www.worldbulletin.net', 'The Guardian', 'CNBC', 'New York Magazine', 'Daily Times', 'Bloomberg', 'The National', 'FrontPage Magazine', 'KRNV My News 4', 'PoliticusUSA', 'Slate Magazine', 'Electronics Weekly (blog)', nan, 'Yahoo News UK', 'Washington Post', 'Orlando Sentinel', 'Telegraph.co.uk', 'Associated Press via Yahoo! New Zealand Finance', 'Leadership Newspapers', 'Softpedia News', 'Business Insider via Yahoo! Finance India', 'Bloomberg', 'PoliticusUSA', 'NewsBusters (blog)', 'Washington Post', 'New Zealand Herald', 'The Guardian', 'The National', 'ABC News', 'CBS News', 'Western Journalism', 'Neowin', 'Daily Reckoning - Australian Edition', 'WND.com', 'The Verge via Yahoo! News', 'Brookings Institution', 'Windows Report', 'Investorplace.com', nan, 'Politico', 'AsiaNews.it', 'The Intercept', 'USA TODAY', 'Breitbart News', 'BBC News', 'AFP via Yahoo! India News', 'cleveland.com', 'Telegraph.co.uk', 'MIS Asia', 'The Hill (blog)', 'STLtoday.com', 'Telegraph.co.uk', 'Motherboard', 'Newsmax', 'Circulate', 'Mondoweiss', 'Mac Rumors', 'Material Handling & Logistics', 'New York Times', 'Axis of Logic', 'Huffington Post', 'The Nation', 'Computerworld', 'TheBlaze.com', 'Bloomberg', 'Palestine Herald Press', 'Advisor.ca', 'Bloomberg via Yahoo! Finance', 'Intifada Palestine', 'Management Today', 'AFP via Yahoo! News', 'Reuters', 'Firstpost', 'Deutsche Welle', 'Irish Times', 'The Hindu', 'azcentral.com', 'MarketWatch', 'Franklin Independent', 'The Verge', 'Madison.com', 'Daily Caller', 'Media Matters for America', 'TIME', 'fox6now.com', 'gulfnews.com', 'Raw Story', 'AFP via Yahoo! News', 'Washington Post', 'The Guardian', 'RenewAmerica', 'Al-Arabiya', 'MIS Asia', 'Free Malaysia Today', 'TechCrunch', 'Premium Times', 'Reuters via Yahoo! News', 'NPR', 'The Independent', 'BGR', 'Al Jazeera via Yahoo UK & Ireland News', 'BGR', 'Nasdaq', 'The Japan Times', 'Observer', 'Wall Street Journal', 'ValueWalk', 'Softpedia News', 'TASS', 'Business Insider via Yahoo! Finance', 'Washington Post', 'Sky News', 'Mediaite', 'Associated Press via Yahoo! Finance', 'The Union Leader', 'The Christian Science Monitor', 'CCTV-America', 'Leaders Tunisie', 'Grist', 'Softpedia News', 'The Guardian', 'ZDNet', 'New York Times', 'Gizmodo', 'The Standard', 'NBCNews.com', 'WinBeta', 'Reuters', 'The Standard Digital News (press release) (blog)', 'San Francisco Bay View', 'CNN Money', 'The Hill (blog)', 'Autoblog (blog)', 'Irish Examiner', 'Asia Times', 'VICE', 'New Zealand Herald', 'Arutz Sheva', 'New York Times', 'New York Times Finance', "Investor's Business Daily", 'TPM', 'Business Wire (press release)', 'Reuters Blogs (blog)', 'Bloomberg', 'WTKR Norfolk', 'BBC News', 'Salon', 'Arab News via Yahoo Maktoob News', 'BetaNews', 'CNET', 'Vocativ', 'CBS Local', 'BetaNews', 'Boston Herald', ' ', 'Washington Post', 'Sky News via Yahoo UK & Ireland News', 'Washington Post', 'Wall Street Journal (blog)', 'TODAY.ng', 'Sky News via Yahoo UK & Ireland News', 'The Massachusetts Daily Collegian', 'Digital Trends via Yahoo! News', 'Telegraph.co.uk', 'Reuters via Yahoo! Finance', 'Wisconsin Public Radio News', 'PR Newswire (press release)', 'Yahoo Singapore News', 'Associated Press via Yahoo! News', 'PC World', 'International Business Times', 'CBC.ca', 'The Atlantic', 'InfoWorld', 'Mediaite', 'Huffington Post', 'SBS', 'Breitbart News', 'FactCheck.org', 'KRQE & KASA FOX 2 Albuquerque', 'Globalnews.ca', 'MarketWatch', 'The Verge', 'The Record', 'Reuters via Yahoo UK & Ireland Finance', 'SuperSite for Windows', 'euronews', 'The Register', 'RenewEconomy', 'CBC.ca', 'Santa Fe New Mexican', 'TWCN Tech News (blog)', 'The Express Tribune', 'AFP via Yahoo!7 News', 'T.H.E. Journal', 'Huffington Post', 'WinBeta', 'Economic Times', 'BT.com', 'National Catholic Register', 'CNET', 'Reuters', 'CBS News', 'CBC.ca', 'The Register', 'Hot Air', 'Web Host Industry Review', 'CRN', 'Marketplace.org', 'The Star Online', 'KSWO Lawton-Wichita Falls', 'BDlive', 'TIME', 'Malaysiakini (subscription)', 'Media Matters for America (blog)', 'TODAYonline', 'Money Magazine', 'People Magazine', 'The Fiscal Times', 'DNA India', 'Bidness ETC', 'Forbes', 'EconomyWatch.com', 'Reuters', 'Bloomberg', 'Digital Trends via Yahoo! News', 'Albuquerque Journal', 'News One', 'New York Times', 'TechCrunch', 'Denver Post', 'The Nation - Thailand's English news', 'The Guardian', 'ANI via Yahoo! India News', 'YourStory.com', 'FXStreet', 'Private Eye', 'Minneapolis-St. Paul Star Tribune', 'InformationWeek', 'Church Times', 'The Atlantic', 'Voice of America', 'IANS via Yahoo Maktoob News', 'Vancouver Sun', 'The Hamilton Journal News', 'Bloomberg via Yahoo! Finance', 'ABC News', 'Redmondmag.com', 'KABC-TV Los Angeles', 'NEWS.com.au', 'Arutz Sheva', 'Belleville News-Democrat', 'UPI.com', 'Sydney Morning Herald', 'Radio New Zealand', 'Hot Air', 'USA TODAY', 'ABC News', 'Business Insider', 'The Register', 'Wall Street Journal', 'Reuters via Yahoo Canada News', 'OK! Magazine', 'Reuters UK', 'Milwaukee Journal Sentinel', 'The Manila Times', 'Hartford Courant', 'Is stories', 'WSFA 12 Montgomery', 'Syracuse.com', 'AFP via Yahoo! India News', 'CNN', 'Dallas Morning News', 'Stanly News & Press', 'GamesIndustry.biz', 'The Japan Times', 'Re/code', 'Sky News via Yahoo UK & Ireland News', 'ABC News', 'Computerworld', 'ABC News', 'ABC News', 'AppAdvice', 'USA TODAY', 'Dorset Echo', 'Reuters', 'Reuters', 'Salt Lake Tribune', 'Economic Times', 'VentureBeat', 'Breitbart News', 'Reuters', 'The Straits Times', 'Frome Times', 'CBS News', 'Greenfield Daily Reporter', 'TheStreet.com', 'Digital Trends via Yahoo! Sports', 'International Business Times via Yahoo UK & Ireland News', 'Politico', 'Raw Story', 'TweakTown', 'GameSpot via Yahoo! News', 'Washington Times', "Talkin' Cloud", 'ExecutiveBiz (blog)', 'CTV News', 'Insurance Journal', 'International Business Times', 'HarpersBAZAAR.com', 'UN News Centre', 'BBC News', 'HRHub', 'Bluefield Daily Telegraph', 'New Republic', 'WinBeta', 'BetaNews', 'Mirror.co.uk', 'Premium Times', 'Washington Post', 'VentureBeat', 'MSPoweruser.com', 'NPR', 'Arab News', 'AFP via Yahoo! News', 'The Daily Star', 'CRIENGLISH.com', 'Accuracy In Media', 'Washington Free Beacon', 'The Guardian', 'Catholic New York', 'AFP via Yahoo! News', 'The Indian Express', 'Minneapolis-St. Paul Star Tribune', 'U.S. News & World Report', 'The Japan Times', 'Nikkei Asian Review', 'Tech Insider (blog)', 'InvestCorrectly', 'Reuters via Yahoo Maktoob News', 'AFP via Yahoo UK & Ireland News', 'Entertainment Weekly', 'The National Business Review', 'POLITICO.eu', 'Los Angeles Times', 'Stuff.co.nz', 'Neowin', 'NPR', 'TCPalm', 'Kill Screen (blog)', 'Power Line (blog)', 'Vulture', 'Cincinnati.com', 'The Australian', 'Reuters', 'BBC News', 'New York Daily News', 'WalesOnline', 'Christian Science Monitor', 'CBS News', 'Business Insider', 'Business Standard', 'Deseret News', 'TechCrunch', 'Mixmag', 'Reuters', 'ESPN FC (blog)', 'AFP via Yahoo! India News', 'Edmonton Sun', 'Marketwired via Yahoo! Finance', 'Indianapolis Business Journal (blog)', 'Daily Beast', 'CNET via Yahoo! News', 'Pocket-lint.com', 'Yahoo News', 'Newsweek', 'The Guardian', 'Yahoo Finance', 'New York Times', 'Times of India', 'The Nation. (blog)', 'Computerworld', 'The Globe and Mail', "Crain's Chicago Business", 'USA TODAY', 'Washington Post', 'LubbockOnline.com', 'The Hill (blog)', 'Wall Street Journal', 'Fortune', 'The Canadian Press via Yahoo Canada Finance', 'WinBeta', 'Nashville Business Journal', 'Intifada Palestine', 'The New Zealand Herald', 'The News', 'American Thinker (blog)', 'Berwick Advertiser', 'American Thinker', 'The Wall Street Journal', 'Business Insider', 'New York Post', 'Power Line (blog)', 'NPR', 'Newsweek', 'Los Angeles Times', 'CBC.ca', ' ', 'MSPoweruser.com', 'Bloomberg via Yahoo UK & Ireland Finance', 'USA TODAY', 'info komputer', 'Reuters', 'Inside Higher Ed', 'Wall Street Journal', 'CNBC', 'Wall Street Journal', 'PR Newswire via Yahoo! Finance', 'Softpedia News', 'CBS News', 'BDlive', 'Reuters via Yahoo! Finance', 'Jakarta Post', 'Scoop.co.nz', 'Khaleej Times', 'Reuters', 'Reuters UK', 'Reuters via Yahoo Canada News', 'Daily Sabah', 'CNN', 'The Week Magazine', 'Top Tech News', 'Business Insider Australia', 'Nikkei Asian Review', 'BBC News', 'Denver Post', 'CBS Dallas - Fort Worth', 'Reuters', 'TPM', 'Stuff', 'The Sun Daily', 'Breitbart News', 'AAP via Yahoo!7 Finance', 'Pc-Tablet Media', 'KWCH', 'Boing Boing', 'Reuters', 'ABC News', 'Merinews', 'The Hill (blog)', 'Jakarta Post', 'DNA India', 'The Ledger', 'Business Insider', 'Hot Air', 'Forbes', 'The Verge', 'Sydney Morning Herald', 'SB Nation', 'GameZone', 'NewsBusters (blog)', nan, 'New York Times', 'Mashable', 'Roll Call (registration)', 'The Hill (blog)', 'Breitbart News', 'Reuters', 'Wall Street Journal (blog)', 'Fox News', 'RT', 'MIS Asia', 'Politico', 'Wall Street Journal (blog)', 'Phone Arena', 'Daiji World', 'Morning Journal News', 'TechRadar', 'News Every day', 'Middle East Confidential', 'Business Wire (press release)', 'Reuters', 'Vanguard', 'Tyler Morning Telegraph', 'Toronto Sun', 'CBC.ca', 'Economic Times', 'The Economic Times', 'Seeking Alpha', 'Irish Times', 'Jerusalem Post Israel News', 'AFP via Yahoo! India News', 'Ars Technica', 'Milwaukee Journal Sentinel', 'WinBeta', 'ABC News', 'Reuters Africa', 'The Verge via Yahoo! News', 'The Globe and Mail', 'The Canadian Press via Yahoo Canada News', 'Times Colonist', 'The Standard', 'Nasdaq', 'Associated Press via Yahoo! Finance India', 'Global Risk Insights', 'CNN Money', 'CNBC via Yahoo! Finance', 'Reuters - UK Focus via Yahoo UK & Ireland Finance', 'Jacobin magazine', 'POLITICO Magazine', 'The Courier-Journal', 'Bath Chronicle', 'MarketWatch', 'Natural Resources Defense Council', 'Al Jazeera America', 'TechSpot', 'TheBlaze.com', 'PoliticusUSA', 'AOL News', 'PC World', 'WFMYNews2.com', 'The ', 'Bloomberg', 'Yahoo Finance', 'Christian Science Monitor', 'Computer World Australia', 'Channel NewsAsia', 'Globalnews.ca', 'International Paralymic Committee', 'ABC News', 'Daily Mail', 'Bloomberg via Yahoo UK & Ireland Finance', 'Daily Signal', 'Reason (blog)', 'CNN', 'Palestine Herald Press', 'NBC NEWS', 'The Straits Times', 'NewsBusters (blog)', 'Reuters', 'VG247', 'Fortune', 'Bloomberg', 'WJXT Jacksonville', 'CNET UK', 'Reuters', 'Agence France-Presse via Yahoo Canada News', 'AFP via Yahoo!7 Finance', 'Hot Air', 'Sharecast via Yahoo UK & Ireland Finance', 'The Malaysian Insider', 'KLTV 7 Tyler', 'VentureBeat', 'TPM', 'Gawker', 'KETV 7 Omaha', 'Washington Times', 'AlterNet', 'Forbes', 'CW39 NewsFix', 'Eastbourne Herald', 'American Free Press', 'Chicago Tribune', 'Deseret News', 'The Verge', 'Columbus Dispatch', 'Vanguard', 'Salon', 'Phone Arena', 'Bloomberg via Yahoo! Finance', 'TheBlaze.com', 'U.S. News & World Report', 'The Local Denmark', 'Business Insider', 'Albany Times Union', 'WeAreGreenBay.com', 'The Columbian', 'U.S. News & World Report', 'Petra News Agency', 'WND.com', 'Benzinga', 'Forbes', 'The Register', 'The Australian (subscription) (blog)', 'Bloomberg', 'The Economist', 'Inquirer', 'UPI.com', 'Antiwar.com', 'Sydney Morning Herald', 'HotNewHipHop', 'New York Times', 'Daily Caller', 'Saudi Gazette', 'Forbes', 'SegmentNext', 'Financial Times', 'WinBeta', 'Redress Information & Analysis', 'Digital Trends via Yahoo! Sports', 'Daily Mail', 'Livemint', 'The Next Web', 'Hot Air', 'International Business Times', 'Daily News Egypt', 'Washington Times', 'Flathead Beacon', 'Economic Times', 'Vox', 'Firstpost', 'Independent Online', 'New York Post', 'TheBlaze.com', 'Irish Independent', 'South China Morning Post (subscription)', 'CNN Money', 'AFP News via Yahoo! Singapore News', 'Economic Times', 'USA TODAY', 'Business Insider', 'New York Times', 'Ars Technica UK', 'The Rebel', 'Canada Free Press', 'VG247', 'EconomyWatch.com', 'Reuters via Yahoo Canada News', 'Business Insider', 'ABC News', 'Reuters via Yahoo! Finance', 'The Canadian Press via Yahoo Canada News', 'The Star', 'ZDNet', 'Interfax', 'BetaNews', 'Center for Research on Globalization', 'Reuters via Yahoo! News', 'MIS Asia', 'Associated Press via Yahoo! News', 'Bitcoinist.net', "Investor's Business Daily", 'Computing', 'CNBC (subscription)', 'Minneapolis-St. Paul Star Tribune', 'Politico', 'Reuters', 'Reuters via Yahoo! Finance', 'TechRepublic', 'The Indian Express', 'Good4Utah', 'TechCrunch', 'NOLA.com', 'Redmondmag.com', 'Contra Costa Times', '9news.com.au', 'EconoTimes', 'New York Times', 'Bloomberg', 'WND.com', 'Calgary Herald', 'MarketWatch', 'Economic Times', 'Marketplace.org', 'U.S. News & World Report', 'Sky News Australia', 'Channel NewsAsia', 'Chicago Sun-Times', 'USA TODAY', 'Town Hall', 'Forbes', 'New Kerala', 'Fortune', 'Yahoo News UK', 'Financial Post', 'The Times of Israel', 'The Hill', 'Bloomberg', 'FOX43.com', 'Business Traveller', 'Manchester Evening News', 'Washington Post', 'New Straits Times via Yahoo! Singapore News', 'WinBeta', 'Politico', 'CBS News', 'Automation World', 'The Associated Press via Yahoo! Sports', 'New Zimbabwe.com', 'Reuters via Yahoo! Finance', 'ZDNet', 'The Hill', 'CBC.ca', 'Wakefield Express', 'Breitbart News', 'PBS NewsHour', 'Reuters via Yahoo! Sports', 'Los Angeles Times', 'Kathimerini', 'Vanguard', 'CNN', 'AFP via Yahoo!7 News', 'Third Sector', 'CNN', 'Associated Press via Yahoo! News', 'New York Times', 'New York Post', 'The Weekly Standard (blog)', 'Wall Street Journal', 'Times of India', "Crain's Chicago Business", 'Reuters via Yahoo! News', 'The Sydney Morning Herald', 'Bloomberg', 'Channel NewsAsia', 'Global Voices Online', 'AFP via Yahoo! India News', 'Forbes', 'Free Malaysia Today', 'Reuters via Yahoo! Finance', 'The Korea Herald', 'EurasiaNet', 'The Straits Times', 'Firstpost', 'Jezebel', 'CNN Money', 'Co-operative News', 'CBC.ca', 'MSPoweruser.com', 'NPR', 'Economic Times', '660 News', 'Malaysiakini (subscription)', 'Digitimes', 'Daily Mail', 'NewsFactor Network', 'Social Europe', 'MassLive.com', 'The Japan Times', 'Calgary Herald', 'MetroNews Canada', 'Press-Enterprise', 'Wall Street Journal', 'USA TODAY', 'WABC-TV New York', 'Neowin', 'Daily Caller', 'BBC News', 'Bloomberg', 'Ars Technica', 'Daily Mail', 'CNN Money', 'CNW Group via Yahoo! Finance', 'MSPoweruser.com', 'The Guardian', 'The Guardian (blog)', 'Associated Press via Yahoo! Finance', 'Jordan Times', 'WT VOX', 'Chicago Tribune', 'ABC News', 'WWNY TV 7', 'Sputnik International', 'The Straits Times', 'KTRE Lufkin and Nacogdoches', 'Redmondmag.com', 'ABS CBN News', 'The New Zealand Herald', 'Neurogadget', 'AFP via Yahoo! New Zealand News', 'U.S. News & World Report', '680 News', 'Washington Times', 'Yuma Sun', 'GlobeNewswire via Yahoo! New Zealand Finance', 'The Register', 'WNCT', 'New York Times', 'Reuters via Yahoo! Finance', 'MSPoweruser.com', 'gulfnews.com', 'Business Insider', 'NDTV', 'CNBC via Yahoo! Finance', 'CNSNews.com', 'Japan Today', 'Business Wire via Yahoo! Finance', 'Mediaite', 'USA TODAY', 'Reuters via Yahoo! News', '24/7 Wall St.', 'Computer Business Review', 'TPM', 'The Seattle Times', 'Sun Sentinel', 'Forbes', 'Voice of America', 'Newswise', 'Bloomberg', 'International Business Times UK', 'Hindustan Times', 'Town Hall', 'Yahoo News', 'Albanian Daily News', 'Essence.com', 'Seattle Times', 'EMQ', 'Quartz via Yahoo! Finance', 'NextShark', 'CNBC via Yahoo! Finance', 'The Huffington Post', 'Nyasa Times', 'Market Realist', 'South China Morning Post (subscription)', 'Toronto Star', 'Algemeiner', 'Wareable', 'Reuters via Yahoo! News', 'WQAD.com', 'Malta Independent Online', 'The Herald', 'Telegraph.co.uk', 'The Canadian Press via Yahoo Canada News', 'The Inquisitr', 'CNBC', 'Economic Times', 'Softpedia News', 'Breitbart News', 'Grist', 'Good News Pilipinas', 'bnn.ca', 'TheStreet.com', 'Bloomberg', 'Outlook India', 'euronews', 'Pakistan Observer', 'The Hill (blog)', 'Model D', 'Reseller News', 'KSL.com', 'Commercial Property Executive', 'The Guardian', 'The Fresno Bee', 'Mediaite', 'TheStreet.com', 'WinBeta', 'Bloomberg', 'Breitbart News', 'Tyler Morning Telegraph', 'Market Realist', 'USA TODAY', 'Fast Company Magazine', 'Bloomberg', 'The Kingston Whig-Standard', 'Washington Post', 'InfoTel News Ltd', 'The Nation.', 'Business Insider via Yahoo UK & Ireland Finance', 'Kathimerini', 'Peninsula On-line', 'Huffington Post', 'Virgin Islands Daily News', 'Motley Fool', 'Jerusalem Post Israel News', 'The Fiscal Times', 'Sky News', 'Reuters', 'The Adam Smith Institute (blog)', 'Bwog', 'Times of India', 'Center for Research on Globalization', 'TheStreet.com', 'People Magazine', 'The Post and Courier', 'Billboard', 'Siliconindia.com', 'The Guardian', 'Esquire.com', 'TWCN Tech News (blog)', 'Toledo News Now', 'Reuters UK', 'Breitbart News', 'International Business Times', 'Al-Monitor', 'USA TODAY', 'National Review Online', 'Reuters Africa', 'Palestine Herald Press', 'WND.com', 'Daily Mail', 'Channel NewsAsia', 'Daily Signal', 'The Tech Report, LLC', 'Reuters via Yahoo! Finance', 'Business Mirror', 'The Business Times Singapore', 'Reuters via Yahoo! Finance', 'Reuters', 'NBCNews.com', 'The Guardian', 'Texarkana Gazette', 'International Business Times', 'The Seattle Times', 'KWTV News9', 'AFP Relax via Yahoo! Philippines News', 'Computerworld', 'Reuters via Yahoo UK & Ireland News', 'Radio Prague', 'Voice of America', 'Pocket-lint.com', 'African Manager (press release) (registration) (blog)', 'TechCrunch', 'AFP via Yahoo! India News', 'WTOP', 'Forbes', 'SiliconIndia', 'MINING.com', 'InformationWeek', 'International Business Times UK', 'The Globe and Mail', 'Los Angeles Times', 'Lazygamer', 'Seeking Alpha', 'The Register', 'Fox News', 'The Next Web', 'New York Times', 'The Hindu', 'Middle East Eye', 'KHOU.com', 'ABC11 Raleigh-Durham-Fayetteville', 'Tyler Morning Telegraph', 'Ventures Africa', 'Yahoo News UK', 'Seattle Times', 'Washington Post', 'Reuters', 'Hindu Business Line', 'Associated Press via Yahoo! News', 'MarketingProfs.com (subscription)', 'Sky News Australia', 'WTKR Norfolk', 'New York Times', 'Politico', 'The Manila Times', 'Perth Now', 'TIME', 'GreenBiz', 'Marketwired via Yahoo! Finance', 'The Ringer (blog)', 'The Times of Israel', 'CNNMoney', 'Malta Independent Online', 'Huffington Post', 'Times of India', 'WBNS-10TV Columbus', 'RTE News', 'Asian Correspondent', "Barron's (blog)", "Investor's Business Daily", 'Sky News via Yahoo UK & Ireland News', 'Economic Times', 'GameZone', 'Jakarta Globe', 'Vox', 'The Washington Times', "Barron's", 'V3.co.uk', 'Amigobulls', 'Daily Caller', 'The Weekly Standard (blog)', 'Twitchy', 'Gematsu', 'CBC.ca', 'PCWorld', 'Business Insider', 'New York Times', 'Business Wire (press release)', 'ABC News', 'Wall Street Journal', 'SC Magazine', 'Philly.com (blog)', 'WJXT Jacksonville', 'AllAfrica.com', 'New York Times', 'Reuters', 'KLTV', 'Tampa Bay Times', 'MyAJC (blog)', "Barron's (blog)", 'The Standard', 'Alaska Dispatch News', 'OilPrice.com', 'WSLS', 'DZ Foot', 'Bloomberg via Yahoo! Finance', 'WGAL 8 Susquehanna Valley', 'AllAfrica.com', 'POLITICO Magazine', 'Financial Times', 'The Washington Times', 'Interfax', 'MyBroadband', 'Vox', 'Washington Times', 'International Business Times', 'San Jose Mercury News', 'RTÉ News', 'TASS', 'Manila Bulletin', 'National Review Online', 'iPolitics.ca (subscription)', 'RealClearPolitics', 'Engadget', 'Imperial College London', 'Le Mauricien', 'Fox News', 'Power Line (blog)', 'MSPoweruser.com', 'Ubergizmo', 'Mondoweiss', 'American Enterprise Institute', 'The Business Times Singapore', 'Las Vegas Sun', 'Business Today', 'Philly.com', 'CNBC', 'The National', 'Engadget', 'PR Newswire via Yahoo! Finance', 'WinBeta', 'South China Morning Post (subscription)', 'New York Times', 'KRQE News 13', 'Kuwait News Agency', 'Khaleej Times', 'Irish Times', 'Thomson Reuters Foundation', 'Nyasa Times', 'Wall Street Journal', 'Digital Trends via Yahoo! News', 'Zacks via Yahoo! Finance India', 'AllAfrica.com', 'NDTV', 'Redress Information & Analysis', 'FXStreet', 'The Indian Express via Yahoo! India News', 'Nasdaq', 'Benzinga', 'KWCH', 'Sydney Morning Herald', 'VentureBeat', 'InfoWorld', 'GameSpot', 'Newsmax', 'Bloomberg', 'Wall Street Journal', 'Sputnik International', 'NBC4i.com', 'Softpedia News', 'PC Magazine', 'Sputnik International', 'Economic Times', 'Wall Street Journal', 'TIME', 'AfricaNews', 'Regina Leader-Post', 'Reuters', 'LifeNews.com', 'Softpedia News', 'Salon', 'IB Times via Yahoo UK & Ireland News', 'Belfast Telegraph', 'WND.com', 'The Guardian', 'WinBeta', 'TODAYonline', 'Nasdaq', 'The Herald', 'AFP via Yahoo! News', 'AfricaNews', 'The Korea Herald', 'Tech News Today', 'Tampabay.com', 'Brisbane Times', 'Phys.Org', 'Business Standard India', 'VentureBeat', 'AllAfrica.com', 'WinBeta', 'Forbes', 'Telegraph.co.uk', 'TechRepublic', 'Channel News Asia', 'Wisconsin Gazette', 'TASS', 'SC Magazine', 'Vanguard', 'SB Nation', 'Hindustan Times', 'eWeek', 'TechnoBuffalo', 'The Weekly Standard (blog)', 'IT PRO', 'PBS NewsHour', 'Daily Mail', 'Reuters via Yahoo! Finance', 'The Christian Science Monitor', 'Neowin', 'euronews', 'GMA News Online', 'Reuters via Yahoo! Finance', 'The Canadian Press via Yahoo Canada News', 'TASS', 'The Japan Times', 'Forbes', 'NAIJ.COM', 'Newsweek', 'Al-Bawaba', 'The Register-Guard', 'FOX Business', 'Mondoweiss', 'FierceCIO', 'Baltimore Sun', 'Politico', 'Minneapolis-St. Paul Star Tribune', 'Daily Caller', 'BBC News', 'Calgary Herald', 'Reuters', 'WinBeta', 'The Canberra Times', 'Reuters', 'Info-Palestine', 'ARNnet', 'Salon', 'The Guardian', 'International Business Times via Yahoo UK & Ireland News', 'Vox', 'Washington Post', 'Economic Times', 'Washington Free Beacon', 'The Guardian', 'MSPoweruser.com', 'WinBeta', 'WND.com', 'KFOX 14 El Paso', 'International Business Times', 'eWeek', 'Haaretz', 'Reuters', 'CNN Money', 'Shanghai Daily (subscription)', 'City A.M.', 'BBC News', 'Wall Street Journal (blog)', nan, 'VentureBeat', 'Sky News', 'American Thinker (blog)', 'The National', 'Foreign Policy (blog)', 'Digital Trends via Yahoo! News', 'Washington News Wire', 'Greenwich Time', 'CNBCAfrica.com', 'The Independent', 'The Truro Daily News', 'Chicago Tribune', 'SFGate', 'WinBeta', 'Washington Post (blog)', 'Reuters via Yahoo UK & Ireland News', 'SNAPPA Technology via Yahoo UK & Ireland News', 'Computerworld New Zealand', 'MSNBC', 'Skift', 'San Antonio Express-News (subscription)', 'Business Insider Australia', 'THISDAY Live', 'International Middle East Media Center', 'WFMZ Allentown', 'Newsday', 'WinBeta', 'Bloomberg', 'Daily Beast', 'Skift', 'The Guardian', 'Fast Company', 'www.worldbulletin.net', 'Yahoo Finance', 'EurActiv', 'The Atlantic', 'Queerty', 'People Magazine', 'New Zimbabwe.com', 'The Straits Times', 'Bloomberg', 'PR Newswire via Yahoo! Finance', 'Fox News', 'ForexLive', 'Los Angeles Times', 'Game Rant', 'Breitbart News', 'TechCrunch', 'Digital Trends via Yahoo! Sports', 'AllAfrica.com', 'Reuters via Yahoo! Finance', 'Miami Herald', 'CNN Money', 'KRNV My News 4', 'Haaretz', 'Wall Street Journal', 'IANS via Yahoo Maktoob News', 'Reuters via Yahoo UK & Ireland News', 'The Independent', 'Wall Street Journal', 'Palestine Herald Press', 'Sputnik International', 'Jakarta Post', 'AsiaOne', 'Neowin', 'The Guardian', 'The Times of India', 'KSL.com', 'Neowin', 'Bloomberg', 'Malaysiakini (subscription)', 'The Oceanside Post', 'Jamaica Gleaner', 'Aljazeera.com', 'KARE', 'NBC2 News', 'New York Post', 'CNET', 'New York Times', 'TASS', 'The Ledger', 'Center for Research on Globalization', 'Media Matters for America', 'Scoop.co.nz', 'Madison.com', 'Kotaku', 'Digital Trends via Yahoo Canada News', 'Breitbart News', 'Business Insider via Yahoo! Finance', 'Palestine Herald Press', 'New York Daily News', 'Tech2', 'Business Wire (press release)', 'The Register', 'Reuters via Yahoo! Singapore News', 'San Francisco Chronicle', 'Colombia Reports', 'Robdailynews', 'Thurrott.com (blog)', 'CNN.com', nan, 'Reuters via Yahoo! News', 'Mashable', 'NDTV', 'The New Zealand Herald', 'Money Magazine', 'AdNews', 'BBC News', 'Town Hall', 'Mediaite', 'Indianapolis Star', 'Fox News Insider', 'Breitbart News', 'Business Insider via Yahoo UK & Ireland Finance', 'NetGuide NZ', 'InfoWorld', 'Associated Press via Yahoo! India News', 'Asbury Park Press', 'Wall Street Journal', 'Hamilton Spectator', 'Russian Information Agency Novosti', 'AFP via Yahoo! India News', 'gulfnews.com', 'The Atlantic', 'AFP via Yahoo Maktoob News', 'Bloomberg', 'Haaretz', 'Macleans.ca', 'Eyewitness News', 'The Seattle Times', 'MarketWatch', 'MarketWatch', 'East Bay Times', 'Reuters UK', 'U.S.News & World Report via Yahoo! News', 'BBC News', 'Raw Story', 'Shanghai Daily (subscription)', 'Bloomberg', 'Sky News', 'The Guardian', 'Arab News', 'The Wall Street Journal', 'CNNMoney', 'WND.com', 'CNBC via Yahoo! Finance', 'RTV Slovenija', 'New York Times', 'TheBlaze.com', 'FOX Business', 'Neowin', 'CNNMoney', 'ENPI Info Centre', 'NDTV', 'NJ.com', 'Arab News', 'New York Post', 'Politicsweb', 'Politico', 'U.S. News & World Report', 'Irish Independent', 'Bloomberg', 'Arab News', 'Waltonian', 'CIO', 'Chicago Tribune', 'TameBay', 'AFP via Yahoo! India News', 'Nasdaq', 'Contra Costa Times', 'FXStreet', 'Interfax', 'AFP via Yahoo! News', 'Wall Street Journal', 'ABC 7 Gulfshore News', 'Orlando Sentinel', 'Christian Daily', 'The Australian', 'The Australian Financial Review', 'TechCrunch', 'Bloomberg', 'Denver Post', 'Reuters via Yahoo! Finance', 'Good Morning America via Yahoo! News', 'Reuters via Yahoo! Sports', 'Reuters via Yahoo! Finance', 'China Daily', 'ForexLive', 'Daily Post North Wales', 'Government Technology', 'Techvibes (blog)', 'RealClearMarkets', 'International Middle East Media Center', 'Wall Street Journal', 'RTT News', 'Daily Mail', 'Wall Street Journal', 'AngolaPress', 'Dezeen', 'ARNnet', 'Reuters UK', 'Bloomberg', 'Casper Star-Tribune Online', 'Market Realist', 'The Independent', 'The Union Leader', 'Lincoln Journal Star', 'NewsChannel5.com', 'New Zealand Herald', 'Deadline', 'RTT News', 'The Wall Street Journal', 'Reuters via Yahoo! News', 'The Emory Wheel', 'Telegraph.co.uk', 'Algemeiner', 'EU News', 'Mondoweiss', 'CNNMoney', 'Reason', 'Daily Mail', 'Reuters', 'Motley Fool', 'The Financial Express via Yahoo! Finance India', 'Advocate.com', 'Dallas Morning News', 'Irish Independent', 'Reuters', 'AFP via Yahoo! Finance', 'Financial Post', 'Whitehouse.gov (press release)', 'TechEye', 'SBS', 'Wall Street Journal (blog)', nan, 'MyAJC', 'Wall Street Journal', 'CRN', 'The Seattle Times', 'Al-Arabiya', 'New Zealand Herald', 'GlobeNewswire via Yahoo! Finance', 'The Korea Herald', 'Palestine Herald Press', 'fox6now.com', 'The Malaysian Insider', 'Telegraph.co.uk', 'Linux.com (blog)', 'Firstcoastnews.com', 'CBS News', 'The Economist (blog)', 'GeekWire', 'New York Times', 'ARNnet', 'Greek Reporter', 'WinBeta', 'ABC News', 'Business Insider', 'Korea Times', 'Otago Daily Times', 'BuzzFeed News', 'CNN Money', 'Yorkton News Review', 'FrontPage Magazine', 'TheStreet.com', 'CNBC', 'CNN', 'Daily Mail', 'Washington Post', 'GMA News Online', 'PCWorld', 'AFP via Yahoo UK & Ireland Finance', 'Business Insider via Yahoo Canada Finance', 'The Hill', 'Sydney Morning Herald', 'Yahoo Finance', 'The Globe and Mail', 'Engadget', 'Associated Press via Yahoo Maktoob News', 'Jalopnik', 'Los Angeles Times', 'Wired.co.uk', 'Economic Times', 'Reuters', 'Seattle Times', 'Breitbart News', 'Edmonton Sun', 'Thomson Reuters Foundation', 'The Verge', 'Bloomberg', 'PC World', 'Nasdaq', 'Washington Examiner', 'NPR', 'The Economic Times', 'NPR', 'The Hill', 'The Guardian', 'Press TV', 'Washington Post', 'Press-Enterprise', 'Linux.com (blog)', 'Breitbart News', 'Business Insider', 'Wall Street Journal', 'WFAA.com', 'Nasdaq', 'ESPN', 'Lifehacker', 'Peninsula On-line', 'TheBlaze.com', 'Daily Times', 'Minneapolis Star Tribune', 'Daily Star', 'Business Wire via Yahoo! Finance', 'ABC 7 Gulfshore News', 'The White House', 'International Business Times', 'The Post and Courier', 'Politico', 'BDlive', 'Palestine News Network', 'Al-Arabiya', 'Associated Press via Yahoo! Finance', 'UPROXX via Yahoo! Sports', 'Breitbart News', 'Aljazeera.com', 'Evening Standard', 'TheBlaze.com', 'Business Wire (press release)', 'Economic Times', 'VentureBeat', 'CNN Money', 'Reuters via Yahoo! News', 'legal Insurrection (blog)', 'Raw Story', 'CTV News', 'New York Post', 'Financial Times', 'The Daily Star', 'Sydney Morning Herald', 'Here And Now', 'Newsmax', 'Algemeiner', 'Politico', 'TheBlaze.com', 'KTVZ', 'Associated Press via Yahoo! Finance', 'Al Jazeera via Yahoo Maktoob News', 'International Business Times via Yahoo UK & Ireland News', 'CNN', 'The Guardian', 'The Indian Express', 'Bloomberg via Yahoo! Finance', 'Miami Herald', 'Investopedia', 'Digital Trends', 'TIME', 'The Register', 'International Business Times UK', 'Computerworld', 'OCRegister', 'Shanghai Daily (subscription)', 'New York Post', 'Wall Street Journal', 'Baytown Sun', 'The American Genius', 'Santa Fe New Mexican', 'The Week UK', 'Washington Post', 'AFP via Yahoo! India News', 'Associated Press via Yahoo! News', 'The Fiscal Times via Yahoo! News', 'Arab News', 'euronews', 'Gotta Be Mobile', 'The Portugal News', 'Bloomington Pantagraph', 'Elizabethtown News Enterprise', 'Palestine Herald Press', 'Wall Street Journal', 'Business Insider', 'Daily Mail', 'Al-Monitor', 'Tech Times', 'The Globe and Mail', 'CBC.ca', 'Thehour.com', 'Canada.com', 'TIME', 'Newsmax', 'CRN', 'Forbes', 'Palestine Herald Press', 'Forbes', 'The Irish Times', 'NJ.com', 'Arab News', 'Inc.com', "Kuensel, Buhutan's National Newspaper", 'Palestine Herald Press', 'Media Matters for America', 'ABC News', 'Softpedia News', 'Mondoweiss', 'Motley Fool', 'Raw Story', 'ABC Online', 'Computerworld New Zealand', 'The Nation (blog)', 'YugaTech', 'Economic Times', 'Business Insider UK', 'Huffington Post', 'Marketwired (press release)', 'Sputnik International', 'Town Hall', 'NewsFactor Network', 'Arab News', 'The Hill', 'Fox News', 'Calgary Sun', 'WinBeta', 'KING5.com', 'Evening Standard', 'ZDNet UK', 'Digital Trends via Yahoo! Sports', 'ABC News', 'CounterPunch', 'The Post and Courier', 'Seattle Times', 'New York Post', 'MSPoweruser.com', 'Reuters Blogs (blog)', 'Los Angeles Times', 'Buffalo Business First', 'Ynetnews', 'GreenBiz', 'Computerworld', 'The Hill', 'NDTV', 'CNBC via Yahoo! New Zealand Finance', 'Phone Arena', 'Huffington Post', 'Hindu Business Line', 'Re/code', 'Yahoo Politics', 'Reuters via Yahoo Canada News', 'VentureBeat', 'News1130', 'ABC News', 'Motley Fool', 'WAFA - Palestine News Agency', 'Whitehouse.gov (press release)', 'CNN', 'Network World', 'Reuters UK', 'The Next Web', 'Business Insider Australia', 'ABC News via Yahoo! News', 'Workers World', 'The Business Times Singapore', 'Business Insider via Yahoo! Finance', 'BBC News', 'Mirror.co.uk', 'Bloomberg via Yahoo!7 Finance', 'Bloomberg', 'Breitbart News', 'Jakarta Post', 'Liberty News Now', 'Toronto Star', 'OilPrice.com', 'CNN', 'Forbes', 'Neowin', 'Telegraph.co.uk', 'ABC News', 'Jakarta Post', 'Global News', 'Reuters India', 'Times of Oman', 'WISN Milwaukee', 'Tech Insider (blog)', 'New York Times', 'Sky News via Yahoo Canada News', 'San Jose Mercury News', 'Jspace News', 'World Bank Group', 'CNBC', 'TPM (blog)', 'Hindustan Times', 'Eureka Times Standard', 'Nasdaq', 'Jakarta Globe', 'MSPoweruser.com', 'CTV News', 'Telegraph.co.uk', 'Sputnik International', 'The Local.fr', 'euronews', 'ABC News', 'Economic Times', 'New York Times', 'EurActiv', 'WTHR', "Slugger O'Toole", 'DNA India', 'Breitbart News', 'Computer Business Review', 'AFP via Yahoo! India News', 'AlterNet', 'Daily Sun', 'New York Times', 'CTV News', 'The Verge', 'Business Insider', 'Reuters via Yahoo! News', 'News 24 South Africa', 'Twitchy', 'Telegraph.co.uk', 'Belfast Telegraph', 'Chicago Daily Herald', 'Business Standard', 'Dayton Daily News', nan, 'GlobalMeatNews.com', 'Reuters via Yahoo Maktoob News', 'TheWrap', 'Times of India', 'Times of India', 'The Root', 'CNBC via Yahoo! Finance', 'NBC NEWS', 'Andean Airmail & PERUVIAN TIMES', 'Long War Journal', 'Nasdaq', 'Economic Times', '24/7 Wall St.', 'Associated Press via Yahoo! New Zealand Finance', 'Haaretz', 'The Washington Times', 'InformationWeek', 'New York Times', 'Denver Post', 'Vanguard', 'Daiji World', 'Motley Fool', 'Oxfam America (press release) (blog)', 'Business Wire via Yahoo! Finance', 'Neowin', 'MSNBC', 'TASS', 'The Japan Times', 'FrontPage Magazine', 'Ghacks Technology News', 'RT', 'Daily Caller', 'Economic Times', 'Washington Post', 'NewsBusters (blog)', 'Forbes', 'Business Insider via Yahoo Maktoob News', 'Komando', 'Fox News', 'BGR News via Yahoo! News', 'Business Insider', 'ThinkProgress', 'Bloomberg', 'AFP via Yahoo! India News', 'Thurrott.com (blog)', 'PC World', 'Business Insider', 'The Guardian', 'Merced Sun-Star', 'CNBC', 'The Sydney Morning Herald', 'Daily Press', 'Herald Scotland', 'MarketWatch', 'CNN', 'ABC Online', 'The ', 'rediff.com', 'Eagle-Tribune', 'KTUU.com', 'The Japan Times', 'Economic Times', 'Atlanta Journal Constitution', 'CNBC', 'Daily Caller', 'InfoWorld', 'The Business Times Singapore', 'JOE', 'The Record', 'Marketwired via Yahoo! Finance', 'GazetteNET', 'Business Insider', 'Reuters', 'Business Insider Australia', 'Greater Baton Rouge Business Report', 'The National', 'FXStreet', 'Daily Caller', 'Washington Post', 'Chicago Tribune', 'NBCNews.com', 'Jakarta Globe', 'The Boston Globe', 'Wall Street Journal (blog)', 'Digital Trends via Yahoo! Finance', 'MIS Asia', 'Asahi.com', 'Los Angeles Times', 'PR Newswire via Yahoo! Finance', 'Daily Times', 'Associated Press via Yahoo! News', 'Business Wire (press release)', "Today's Zaman", 'MaltaToday', 'American Thinker', nan, 'The Baltic Course', 'Las Vegas Sun', 'This is Money', 'GameZone', 'Fast Company', 'The Cherokeean Herald', 'FrontPage Magazine', 'The Register', 'WJXT Jacksonville', 'Hellenic Shipping News Worldwide', 'The Register', 'CTV Toronto', 'Reuters', 'Computing.co.uk', 'PR Newswire via Yahoo! Finance', "Investor's Business Daily", 'Haitilibre.com', 'Huffington Post', 'Sputnik International', 'Business Wire via Yahoo! Finance', 'WesternSlopeNow', 'The ', 'Jordan Times', 'UPI.com', 'Daily Beast', 'The Guardian', 'Times of India', 'The Register', 'Breitbart News', 'NPR', 'Businessinsider India', 'The Straits Times', 'Refinery29', 'Washington Post', 'Reuters', 'Athens Daily Review', 'Reuters Africa', 'Macleans.ca', 'Center for Research on Globalization', 'Journal Pioneer', 'The Herald', 'Asheville Citizen-Times', 'Sputnik International', 'Los Angeles Times', 'MyStatesman.com', 'Yahoo News', 'KSLA-TV', 'Re/code', 'eWeek', 'South China Morning Post (subscription)', 'Daily Beast', 'Al Jazeera America', 'Softpedia News', 'Charleston Post Courier', 'AFP via Yahoo! India News', 'Bradenton Herald', 'Reuters Middle East via Yahoo Maktoob News', 'Morningstar.com', 'The Wall Street Journal', 'USA TODAY', 'Newton Press Mentor', 'The Hill', 'HardwareZone', 'Baltimore Sun', 'Voice of America (blog)', 'Daily Star', 'Reason (blog)', 'Voice of America (blog)', 'The Daily Star', 'Bloomberg', 'Dallas Morning News', 'The Hill', 'The Australian Financial Review', 'Bloomberg', 'PC World', 'NDTV', 'Biometric Update', 'Bloomberg', 'Computerworld', 'News & Observer', 'Malaysiakini (subscription)', 'Middle East Monitor', 'Bitbag', 'JNS.org', 'MIS Asia', 'CNN', 'ABC News', 'Independent Online', 'Ars Technica', 'Florida Times-Union', 'VOA News', 'The Australian Financial Review', 'CNBC', 'www.worldbulletin.net', 'CIO Australia', 'Washington Times', 'Profit Confidential', 'Atlas Obscura', 'The Record', 'The Guardian', 'Philly.com', 'IANS via Yahoo Maktoob News', 'Associated Press via Yahoo! News', 'NJ.com', 'Bloomberg', 'Sudan Tribune', 'Globalnews.ca', 'The Verge', 'Market Realist', 'PoliticusUSA', 'AFP via Yahoo! India News', 'gamesindustry.biz', 'CNBC', 'Slate Magazine', 'Reuters Africa', 'The Guardian', 'Scotsman', 'Huffington Post', 'NPR', 'The Guardian', 'USA TODAY', 'Reading Eagle', 'AFP via Yahoo! India News', 'Bloomberg', 'Huffington Post', 'SiliconANGLE', 'Associated Press via Yahoo! News', 'NPR', 'SuperSite for Windows', 'MarketWatch', 'International Business Times', 'Palestine News Network', 'Deutsche Welle', 'www.worldbulletin.net', 'PoliticusUSA', 'Russia Beyond the Headlines', 'The ', 'Huffington Post', 'CNN', 'Philly.com', 'Reuters UK', 'Next City', 'The Bulletin', 'The Times of Israel', 'Fox Sports', 'Heritage Foundation', 'Shanghai Daily (subscription)', 'Digital Trends via Yahoo! Sports', 'Power Line (blog)', 'gulfnews.com', 'Politico', 'BGR News via Yahoo! News', 'PJ Media', 'TechTarget', 'Washington Times', 'Seeking Alpha', 'Daily Kos', 'Kyiv Post', 'Sputnik France', 'TheBlaze.com', 'Reuters', 'The Business Times Singapore', 'Computing', 'SB Nation', 'The Hill (blog)', 'Zacks via Yahoo! Finance India', 'WND.com', 'Center for Research on Globalization', 'Fox News', 'Economic Times', 'Phone Arena', 'Bay Area Indymedia', 'Spiked', 'Vanguard', 'Russia Beyond the Headlines', 'Al Jazeera via Yahoo Maktoob News', 'News24', 'ABC News', 'The National Interest Online', 'Washington Post', 'U.S. News & World Report', 'TIME', 'BBC News', 'Dallas Morning News (blog)', 'Hot Hardware', 'KARK', 'AFP News via Yahoo! Singapore News', 'Financial Times', 'The MIT Tech', 'BetaNews', 'Rigzone', 'IBN live', 'Quartz', 'The Sydney Morning Herald', 'Stuff.co.nz', 'Fortune', 'Reuters via Yahoo Maktoob News', 'Arutz Sheva', 'CIO', 'FactCheck.org', 'Stuff.co.nz', 'Bloomberg', 'Vanguard', 'Seeking Alpha', 'PCWorld', 'St. Joseph News-Press', 'The BRICS Post', 'Plymouth Herald', 'Business Today', 'MyMotherLode.com', 'Daily Mail', 'WND.com', 'AllAfrica.com', 'TMZ.com', 'Fox News', 'The Star Online', 'VentureBeat', 'Know Your Mobile', 'CNBC', 'Seeking Alpha', 'CBS Baltimore', 'The Hindu', 'GeekWire', 'The Express Tribune', 'Associated Press via Yahoo! News', 'POLITICO Magazine', 'Daily Mail', 'Scranton Times-Tribune', 'The Indian Express via Yahoo! India News', 'OZY', 'Washington Free Beacon', 'Chicago Tribune', 'GearNuke', 'AsiaNews.it', 'NZ Newswire via Yahoo!7 News', 'Kathimerini', 'ValueWalk', 'Wall Street Journal (blog)', 'The New Yorker', 'NBC NEWS', 'BBC News', 'NPR', 'Jewish Telegraphic Agency', 'TODAYonline', 'GlobeNewswire via Yahoo! Finance', 'The Seattle Times', 'TheStreet.com', 'Washington Times', 'Washington Examiner', 'TheBlaze.com', 'Politico', 'Forbes', 'USA TODAY', 'Business Insider', 'The Intelligencer / Wheeling News-Register', 'Neowin', 'Chicago Tribune', 'Gallup', 'CNN', 'Bloomberg', 'Morning Consult', 'The Tuscaloosa News', 'WinBeta', 'InfoWorld', 'Fox News', 'Variety via Yahoo! Finance', 'The Washington Times', 'Right Wing Watch', 'Wall Street Journal', 'Daiji World', 'Inside Higher Ed', 'Bloomberg', 'GeekWire', 'Inquirer.net', 'Metrotvnews.com', 'The Register', 'Softpedia News', 'RealClearPolitics', 'Vanguard', 'CNN', 'CSO Australia', 'PC World', 'Palestine Herald Press', 'The Independent', 'Associated Press via Yahoo! Finance', 'Business Recorder', 'Wall Street Journal', 'The Economist', 'LifeNews.com', 'Firstpost', 'Arutz Sheva', 'Zacks via Yahoo! Finance', 'Voice of America', 'MIS Asia', 'The Guardian', 'Asahi.com', 'TechCrunch', 'Bangkok Post', 'CBC via Yahoo Canada News', 'CNBC', 'New York Times', 'Sky News Australia', 'Wall Street Journal', 'InterAksyon', 'The Guardian', 'AFP via Yahoo! News', 'Scotsman', 'Neowin', 'Tech Times', 'Associated Press via Yahoo UK & Ireland News', 'Washington Post (blog)', 'Thurrott.com (blog)', 'Times of Malta', 'PoliticusUSA', 'The Guardian', 'Telegraph.co.uk', 'PJ Media', 'Huffington Post Canada', 'WinBeta', 'The Star', 'The Interpreter', 'pulse', 'Reuters via Yahoo! Finance', 'Seeking Alpha', 'Fortune', 'CNBC', 'Reuters', 'Diginomica', 'The Hill', 'Associated Press via Yahoo! Finance', 'Climate Home', 'Daily Caller', 'AFP via Yahoo!7 Finance', 'Tech Insider', 'Bloomberg', 'CNBC', 'Fortune', 'The ', 'The Root', 'VentureBeat', 'The Korea Herald', 'International Middle East Media Center', 'BusinessDay', '680 News', 'RT', 'ThinkProgress', 'The Guardian Nigeria (satire) (press release) (blog)', 'Forbes', 'The Hill', 'ZDNet', 'Page Six', 'Daily Caller', 'South China Morning Post (subscription)', 'Reuters UK', 'News & Observer', 'Washington Times', 'The Guardian', 'AlterNet', 'Sky News via Yahoo Canada News', 'Al Jazeera via Yahoo Maktoob News', 'Ubergizmo', 'Trend News Agency', 'Malaysian Digest', 'SFGate', 'PC Tech Magazine', 'BDlive', 'CNSNews.com', 'News4C', 'PR Newswire (press release)', 'StreetInsider.com', 'PoliticusUSA', 'Financial Times', 'Reuters via Yahoo! Finance', 'Times of India', 'Economic Times', 'Digital Trends via Yahoo! Finance', 'Los Angeles Times', 'Xinhua', 'Market Watch', 'Business Insider', 'Reuters UK', 'Seattle Times', 'WKBN.com', 'Malta Independent Online', 'Financial Post', 'WinBeta', 'Vanguard', 'Marketwired via Yahoo! Finance', 'Nasdaq', 'TheStreet.com', 'International Middle East Media Center', 'CNN', 'New York Daily News', "Barron's", 'Breitbart News', 'Digital Trends via Yahoo! News', 'The Hill', 'Death and Taxes', 'ITWeb', 'www.worldbulletin.net', 'ABC News', 'The Guardian', 'This is Money', 'The Electronic Intifada (blog)', 'Wisconsin Public Radio News', 'Associated Press via Yahoo! Philippines News', 'The Brown Daily Herald', 'Digital Trends via Yahoo! News', 'gulfnews.com', 'InformationWeek', 'Redmondmag.com', 'Bella Naija', 'Forbes', 'Reuters', 'CNN International', 'HardwareZone', 'Bloomberg', 'NDTV', 'The New Zealand Herald', 'WinBeta', 'Los Angeles Times', "Barron's", 'TechCrunch', 'Reseller News', 'Edmonton Journal', 'International Business Times', 'CNBC', 'KERA North Texas', 'The Business Times Singapore', 'Voice of America', 'Market Exclusive', 'PR Web (press release)', 'AFP via Yahoo! India News', 'LearnBonds', 'Eyewitness News', 'Quartz', 'Financial Post', 'Press Association via Yahoo UK & Ireland News', 'Windows IT Pro', 'Press TV', 'Vanity Fair', 'AFP via Yahoo! Finance', 'Financial Times', 'Reuters via Yahoo! News', 'New York Times', 'TIME', 'SiliconANGLE (blog)', 'CNN', 'Reuters UK', 'PR Newswire (press release)', 'CounterPunch', 'Deadspin', 'Inquirer', 'TASS', 'Christian Science Monitor via Yahoo! News', 'TheStreet.com', 'Sydney Morning Herald', 'YES! Magazine', 'PoliticusUSA', 'Associated Press via Yahoo! New Zealand Finance', 'Monroe Evening News', 'Voice of America', 'The Independent', 'Grist', 'BusinessDesk via Yahoo! New Zealand Finance', 'Washington Examiner', 'The Canadian Press via Yahoo Canada News', 'International Business Times', 'Alternative Information Center (AIC)', 'AFP Relax News via Yahoo! News', 'Irish Times', 'The New Zealand Herald', 'Kyiv Post', 'USA TODAY', 'ABC News', 'Reuters', 'Bloomberg', 'Daily Telegraph', 'TheJournal.ie via Yahoo UK & Ireland News', 'PC World', 'Redmondmag.com', 'Breitbart News', 'Ars Technica', 'Wall Street Journal', 'News Every day', 'The Nation.', 'NDTV', 'SC Magazine', 'Globalnews.ca', 'Tampa Bay Times', 'Washington Post', 'Washington Times', 'Softpedia News', 'Business Insider', 'PR Newswire via Yahoo! Finance', 'AllAfrica.com', 'ANTARA', 'Reuters via Yahoo Canada Finance', 'Financial Times', 'NPR', 'Fox News', 'ABC News', 'WTSP 10 News', 'ABC News', 'Reuters', 'American Spectator', 'ZDNet', 'Bloomberg', 'New Zealand Listener', 'MedicineNet.com', 'CBS Miami', 'Associated Press via Yahoo! News', 'Channel 8 San Diego', 'Anadolu Agency', 'The Manila Times', 'The ', 'Business Wire (press release)', 'Bloomberg', 'People Magazine', 'The Wall Street Journal', 'Fox News', 'Softpedia News', 'Business Insider via Yahoo Maktoob News', 'Geek.com', 'BBC News', 'Android Police', 'Toronto Sun', 'Globalnews.ca', 'RT', 'Fast Company', 'The Express Tribune', 'Bulletin of the Atomic Scientists', 'FXStreet', 'Ottawa Citizen', 'Prensa Latina', 'CNN International', 'CBC.ca', 'Manila Bulletin', 'Holyrood.com', 'Breitbart News', 'Reuters', 'Business Insider', 'Scoop.co.nz (press release)', 'MSPoweruser.com', 'FXStreet', 'AOL News', 'CGMA Magazine', 'BuzzFeed News', 'PC World', 'Stars and Stripes', 'news.delaware.gov', 'Los Angeles Times', 'The Herald', 'Business Insider', 'New Straits Times via Yahoo! Singapore News', 'CTV News', 'DNA India', 'AFP via Yahoo! News', 'Yahoo News', 'RealClearPolitics', 'Project Syndicate', 'EUobserver', 'The Verge', 'IPWatchdog.com', 'Wall Street Journal', 'CNBC', 'Telegraph.co.uk', 'The Register', 'Sydney Morning Herald', 'NBC NEWS', 'telecomasia.net', 'Washington Examiner', 'Reuters', 'TASS', 'Business Insider', 'The Detroit News', 'New Statesman', 'Bloomberg', 'Al-Monitor', 'New York Times', 'Livemint', 'The Sarasota Herald-Tribune', ' ', 'Business Insider via Yahoo! Finance', 'Metro', 'Nasdaq', 'SiliconANGLE (blog)', 'MSPoweruser.com', 'New York Times', 'VentureBeat', 'The Australian (subscription)', 'New York Times', 'Bloomberg', 'KSAT San Antonio', 'Newsweek', 'CNN.com', 'NDTV', 'Los Angeles Times', 'Windows Central', 'BBC News', nan, 'Fox News', 'Al Jazeera via Yahoo UK & Ireland News', 'NBCNews.com', 'WSFA 12 Montgomery', 'AsiaOne', 'Daily Sabah', 'The Bitbag', 'WinBeta', 'Geek.com', 'CNN', 'DEALSTREETASIA', 'Chronicle', 'Vancouver Sun', 'Spectator.co.uk (blog)', 'Neowin', 'Bloomberg', 'MarketWatch', 'Irish Legal News', 'Wall Street Journal', 'The Hill', 'PC World', 'Reuters', 'WPTZ The Champlain Valley', "Barron's (blog)", 'Forbes', 'Financial Times', 'NBC 29 News', 'ZDNet', 'ZDNet', 'WND.com', 'BT.com', 'Sputnik International', 'Reuters', 'Reuters via Yahoo! Sports', 'MSPoweruser.com', 'Forbes', 'Dailyuw', 'The Hill (blog)', 'NBC 7 San Diego', 'RushLimbaugh.com', 'MSPoweruser.com', 'Search Engine Land', 'The Daily Star', 'Bidness ETC', 'FXStreet', 'CBC.ca', 'WAFA - Palestine News Agency', 'TheStreet.com', 'TASS', 'China Daily', 'Reuters via Yahoo Canada News', 'IANS via Yahoo Maktoob News', 'Patheos (blog)', 'TechCrunch', 'Channel NewsAsia', 'Breitbart News', 'Daily Telegraph', 'Voice of America', 'Boston Herald', 'Jerusalem Post Israel News', 'WTOP', 'New York Times Finance', 'Profit Confidential', 'EMQ', 'Greater Kashmir', 'AFP via Yahoo! India News', 'The Australian', 'Greek Reporter', 'Bloomberg', 'MSPoweruser.com', 'Mintpress News (blog)', 'Bloomberg via Yahoo! Finance India', 'Palestine Note', 'Sunshine State News', 'GeekWire', 'The Guardian', 'Washington Times', 'NDTV', 'The Detroit News', 'International Middle East Media Center', 'ETTelecom.com', 'Bloomberg', 'CNN', 'IT World', 'TIME', 'CNET', 'Associated Press via Yahoo UK & Ireland News', 'Seattle Times', 'Town Hall', 'Barron's Online', 'Twitchy', 'The Register', 'This Is Money', 'CommonSpace', 'ZDNet', 'The Herald', 'CBSSports.com', 'ATTN', 'Bloomberg', 'Sputnik International', 'Tech Times', 'Hurriyet Daily News', 'Reuters', 'Reuters via Yahoo! Sports', 'CNN Money', 'TheBlaze.com', 'The ', 'eWeek', 'CBS News', 'CNN', 'Nasdaq', 'Dallas Business Journal (blog)', 'Economic Times', 'ThinkProgress', 'Truth-Out', 'DNA India', 'Breitbart News', 'The Rock Hill Herald', 'Gulf Times', 'Softpedia News', 'CNN International', 'gulfnews.com', 'MSPoweruser.com', 'InfoWorld', 'BetaKit', 'Toronto Star', 'Nasdaq', 'American Thinker (blog)', 'Business Insider via Yahoo! Finance', 'MarketWatch via Yahoo Canada Finance', 'Breitbart News', 'Washington Post', 'The Cherokeean Herald', 'MarketWatch', 'Vanguard', 'Digital Trends via Yahoo UK & Ireland News', 'KING5.com', 'HEXUS', 'NBC 29 News', 'IRINnews.org', 'WinBeta', 'Spectator.co.uk (blog)', 'Jerusalem Post Israel News', 'V3.co.uk', 'Times of India', 'Wall Street Journal Blogs', 'Chicago Tribune', 'PoliticusUSA', 'CNSNews.com', 'The Atlantic', 'GeekWire', 'The Indian Express', 'Greenfield Daily Reporter', 'CityNews', 'ZDNet', 'The Indian Express', 'euronews', '89.3 WFPL', 'Xinhua', 'People Magazine', 'The Washington Times', 'Washington Free Beacon', 'TASS', 'DNA India', 'People Magazine', 'BBC News', 'Fox News', 'The Seattle Times', 'Bloomberg', 'SlashGear', 'Reuters', 'Sky News via Yahoo Canada News', 'ABC News', 'Times of India', 'New York Post', 'Opposing Views', 'Palestine News Network', 'EJ Insight', 'GeekWire', 'The Guardian', 'Computer World Australia', 'Livemint', 'WFMJ', 'AFP via Yahoo! News', 'Huffington Post', 'Bloomberg', 'Los Angeles Times', 'WTOC', 'Fortune', 'The National', 'Reuters', 'The Week Magazine', 'Redmond Channel Partner', 'Financial Times', 'New Straits Times Online', 'BusinessDay', 'cleveland.com', 'Huffington Post', 'Jakarta Post', 'WMPoweruser.com', 'Kotaku Australia', 'PhoneDog', 'Greenfield Daily Reporter', 'CBS News', 'LA Daily News', 'AFP via Yahoo! News', 'Hurriyet Daily News', 'The Fresno Bee', 'Bloomberg', 'InfoWorld', 'Bangkok Post', 'Bloomberg', nan, 'Town Hall', 'Economic Times', 'SegmentNext', 'CNBC', 'NAIJ.COM', 'CNN', 'PR Newswire via Yahoo! Finance', 'The ', 'BusinessTech', 'Daily Caller', 'NL Times', 'Financial Times', 'Vox', 'RollingStone.com', 'CNN Philippines', 'NBC NEWS', 'Irish Examiner', 'Washington Post', 'Engadget', 'Economic Times', 'Daily Caller', 'CNN', 'Valley News', 'Rising Kashmir Daily English Newspaper', 'Quartz', 'Toronto Sun', 'NPR', 'Calgary Herald', 'USA TODAY', 'BizPac Review', 'Voice of America (blog)', 'Quartz', 'Inquirer', 'Sputnik International', 'TechCrunch', 'Timaru Herald', 'Irish Times', 'Viet Nam News', 'Chicago Tribune', 'The Register', 'Daily Sabah', 'Advisor.ca', 'Digital Trends via Yahoo! Sports', 'The Manila Times', 'Toronto Star', 'Liverpool Echo', 'The Atlantic', 'BBC News', 'Washington Post', 'International Business Times UK', 'Seeking Alpha', 'FOX 12 Oregon', 'Breitbart News', 'Reuters via Yahoo! Finance', 'SiliconANGLE (blog)', 'Trend News Agency', 'PoliticusUSA', 'Daily Mail', 'Daily Caller', 'ABC News', 'Seattle Times', 'InfoQ.com', 'The Washington Times', 'Reuters', 'Courier Mail', 'WinBeta', 'Profit Confidential', 'NPR', 'Patch.com', 'RealClearPolitics', 'Daily Mail', 'Out-Law', 'Intifada Palestine', 'TheStreet.com', 'ABC News', 'The Guardian', 'Gulf Times', 'USA TODAY', 'Brandon Sun', 'Fortune', 'Wichita Eagle', 'TIME', 'The Register', 'New York Times', 'Your Middle East', 'TeenVogue.com', 'Jerusalem Post Israel News (blog)', 'Boing Boing', 'The Moose Jaw Times Herald', 'Asbury Park Press', 'Bloomberg', '24/7 Wall St.', 'AFP via Yahoo! News', 'Fortune', 'Middle East Monitor', 'The Straits Times', 'ABC News', 'NPR', 'Seattle Times', 'Softpedia News', 'Fox News Latino', 'Firstpost', 'PBS NewsHour', 'The Times (subscription)', 'PC World', 'Fox News', 'seattlepi.com', 'Chicago Tonight | WTTW', 'MIS Asia', 'LifeNews.com', 'Business Insider', 'News West 9 Midland', 'EFF', 'Profit Confidential', 'RealClearPolitics', 'Daily Mail', 'WinBeta', 'Business Insider', 'SNAPPA Celebrity via Yahoo UK & Ireland News', 'Daily Commercial', 'ThinkProgress', 'Arab News', 'NAIJ.COM', '680 News', 'VentureBeat', 'eWeek', 'Channel 8 San Diego', 'ABC News', 'ABC News', 'Politico', 'International Business Times via Yahoo UK & Ireland News', 'Reuters', 'The Root', 'Atlanta Business Chronicle', 'Washington Examiner', 'Digital Trends', 'CoinDesk', 'Reuters', 'The National', 'USA TODAY', 'Fox Business', 'Yahoo News via Yahoo UK & Ireland News', 'UPI', 'Huffington Post Canada', 'Lawrence Journal World (blog)', 'Associated Press via Yahoo! New Zealand Finance', 'The Weekly Standard (blog)', 'The Dorset Echo', 'ELLE UK', 'National Review Online', 'Columbia Daily Herald', 'ZDNet', 'U.S. News & World Report', 'Wall Street Journal', 'ABC News', 'Business Recorder', 'BetaNews', 'Money Morning', 'The Borneo Post', 'Businessinsider India', 'Town Hall', 'Connecticut Post', 'Q13 FOX Seattle', 'MarketWatch', 'The Verge', 'Business Insider via Yahoo! Finance', 'Business Insider', 'International Business Times', 'USA TODAY', 'Sky News Australia', 'Washington Post', 'GolfDigest.com', 'USA TODAY', 'Reuters via Yahoo! New Zealand News', 'Durham Herald Sun', 'Inquirer', 'SiliconBeat', 'Forbes', 'Reuters via Yahoo! Finance India', 'Economic Times', 'Financial Post', 'The Korea Herald', 'Windows Central', 'The Verge via Yahoo! News', 'Wall Street Journal', 'Exchange News Direct', 'The Nation - Thailand's English news', 'Neowin', 'Digitimes', 'HUH.', 'Reuters via Yahoo! News', 'CBS News', 'San Antonio Express-News', 'Arab News', 'Washington Times', 'Huffington Post', 'Belfast Telegraph', 'Daily Signal', 'Digital Trends', 'IGN', 'Africanews (press release)', 'Digital Trends via Yahoo! News', 'Christian Post', 'The Hill (blog)', 'The Guardian', 'The State Journal-Register', 'New York Times', 'The Economic Times', 'News One', 'CTV News', 'PBS NewsHour', 'Los Angeles Times', 'Environmental Data Interactive Exchange', 'Morning Journal News', 'The Denver Post', 'MarketWatch', 'CNBC', 'Skift', 'GameSpot via Yahoo! News', 'ABC News', 'Washington Times', 'Bloomberg', 'MarketWatch', 'Power Line (blog)', 'AFP via Yahoo!7 Finance', 'CBS News', 'Newschannel 6 Wichita Falls', 'Yahoo News UK', 'KXLH Helena News', 'Forbes', 'Reuters', 'South Bend Tribune', 'NPR', 'Motley Fool', 'CNBC', 'RushLimbaugh.com', 'Fox 2 Detroit', 'Nasdaq', 'KATC Lafayette News', 'The Economist', 'Billings Gazette', 'Belarus Digest', 'Washington Examiner', 'Minnesota Public Radio News', 'Republica', 'TechTarget', 'Wall Street Journal', 'WAFA - Palestine News Agency', 'Bloomberg', 'Bernews', 'TechRepublic', 'The Wall Street Journal', 'Forbes', 'CCTV', 'Associated Press via Yahoo! News', 'ScienceAlert', 'New York Magazine', 'MENAFN', 'Kathimerini', 'The Australian Financial Review', 'United Nations', 'Irish Times', 'ABC News', 'Skift', 'Wonkette (satire) (blog)', 'The ', 'RenewEconomy', 'CNET', 'Palestine News Network', 'New York Times Finance', 'Christian Science Monitor', 'The Diane Rehm Show', 'PR Newswire (press release)', 'Thurrott.com (blog)', 'We Got This Covered', 'Quad City Times', 'The Independent', 'Forbes', 'International Business Times via Yahoo UK & Ireland News', 'Philly.com', 'IGN', 'Middle East Online', 'The Daily Freeman', 'Firstpost', 'Vox', 'Redmondmag.com', 'Forbes', 'Daily News Egypt', 'Latin Times', 'Mediaite', 'Daily News & Analysis', 'Complex', 'Business Wire (press release)', 'Salt Lake Tribune', 'Bloomberg via Yahoo! Finance', 'Sputnik International', 'The Australian', 'VietNamNet Bridge', 'CNBC', 'BBC News', 'PC Magazine', 'New York Times', 'AFP via Yahoo! Finance', 'Left Foot Forward', 'Gawker', 'CRN', 'WAFA - Palestine News Agency', 'Scoop.co.nz (press release)', 'Economic Times', 'Middle East Forum (blog)', 'News One', 'OPB News', 'NBC NEWS', 'rabble.ca (blog)', 'Sharecast via Yahoo UK & Ireland Finance', 'Yahoo News', 'Human Rights Watch', 'Bernama', 'Reuters via Yahoo! Finance', 'Forbes', 'One India', 'The Rock Hill Herald', 'WAND', 'Benzinga', 'Telegraph.co.uk', 'American Thinker', 'ABC Online', 'AFP via Yahoo!7 Finance', 'Bloomberg', 'Stamford Advocate', 'Jerusalem Post Israel News', 'Chicago Sun-Times', 'International Business Times', 'ABC News', 'The Hindu', 'Salon', 'V3.co.uk', 'MYFOXZONE.com', 'Reuters', 'Business Wire via Yahoo! Finance', 'TheBlaze.com', 'Mashable Tech via Yahoo UK & Ireland News', 'Bay Area Indymedia', 'PBS NewsHour', 'AFP via Yahoo!7 Finance', 'Bloomberg', 'Bloomberg', 'New York Daily News', 'Chicago Sun-Times', 'Philly.com', 'Ubergizmo', 'Indiatimes.com', 'Wall Street Journal', 'American Thinker', 'Seattle Times', 'Bloomberg', 'The Hill', 'Slate Magazine (blog)', 'U.S. News & World Report', 'WYFF 4 Greenville', 'CNN', 'The Express Tribune', 'MLive.com', 'WDSU New Orleans', 'Hindustan Times', 'Tech Times', 'Business Wire (press release)', 'Mediaite', 'Newsmax', 'Business Standard', 'The Guardian (blog)', 'MENAFN', 'Huffington Post UK', 'The New York Review of Books', 'Co.Exist', 'Daily Mail', 'CNN.com', 'ZDNet', 'www.worldbulletin.net', 'RushLimbaugh.com', 'Reuters via Yahoo UK & Ireland News', 'The Hill', 'AFP via Yahoo! News', 'The Canadian Press via Yahoo Canada News', 'Hindustan Times', 'Town Hall', 'Palestine Herald Press', 'Travel+Leisure', 'CHOICE', 'Sydney Morning Herald', 'The Hollywood Reporter', 'Globalnews.ca', 'Politico', 'Austin Business Journal', 'The New Zealand Herald', 'Inquirer.net', 'ABC News', 'TASS', 'Good Morning America via Yahoo! News', 'Fox Business', 'Southernminn.com', 'VentureBeat', 'The Atlantic', 'South China Morning Post (registration)', 'GeekWire', 'WTVD-TV', 'Manchester Evening News', 'BBC News', 'CNBC via Yahoo! Finance', 'The Week UK', 'The Hindu', 'SaharaReporters.com', 'Reuters via Yahoo! Finance', 'Breitbart News', 'The Nation - Thailand's English news', 'CBS News', 'Industrial Laser Solutions Magazine', 'TIME', 'The Cameron Herald', 'NPR', 'Mondoweiss', 'Express.co.uk', 'Daily Mail', 'NPR', 'Reuters UK', 'Channel NewsAsia', 'The Hill (blog)', 'Reuters via Yahoo! Finance', 'Robdailynews', 'Washington Examiner', 'Kuwait News Agency', 'Vox', 'Reuters', 'MarketWatch', 'Timaru Herald', 'Bloomberg', 'The Borneo Post', 'The Globe and Mail', 'WinBeta', 'Forbes', 'The Buffalo News', 'Jerusalem Post Israel News', 'Raw Story', 'CBC via Yahoo Canada News', 'Washington Post', 'Economic Times', 'WECT 6 Wilmington', 'The Detroit News', 'SlashGear', 'CRN - UK', 'The Southland Times', 'BGR News via Yahoo! News', 'Forbes', 'Los Angeles Times', 'The Hill', 'Emirates 24|7', 'Ghacks Technology News', 'Ladysmith Gazette', 'Denver Sun Times', 'American Thinker', 'Arab News', 'Mother Jones', 'Market Watch', 'Business Insider', 'Globalnews.ca', 'Daily Caller', 'Esquire.com', 'TASS', 'USA TODAY', 'TIME', 'Computerworld', 'The Huffington Post', 'Mediaite', 'Nasdaq', 'Daily Caller', 'Economic Times', 'Politico', 'WLKY Louisville', 'Irish Examiner', 'Idaho Statesman', 'Digital Trends via Yahoo! Sports', 'Market Realist via Yahoo! Finance India', 'CNN Money', 'CBC.ca', 'Times Colonist', 'Dawn', 'News Sentinel', 'Huffington Post Canada', 'Alphr', 'CNSNews.com (blog)', 'CNNMoney', 'Reuters via Yahoo! Finance India', 'RoadandTrack.com', 'The Register', 'NPR', 'New York Business Journal', 'Financial Market News', 'Breitbart News', 'Detroit Free Press', 'AFP via Yahoo! India News', 'Huffington Post', 'Moneycontrol.com', 'azcentral.com', 'Santa Rosa Press Democrat', 'Washington Post', 'Malaysian Digest', 'For The Win', 'The Independent', 'The Australian', 'The Financial Express via Yahoo! Finance India', 'PoliticusUSA', 'The Hollywood Reporter via Yahoo! News', 'Jewish News', 'Voice of America', 'Detroit Free Press', 'The Star', 'NPR', 'Reuters', 'Nasdaq', 'The Hill', 'Tech Insider via Yahoo UK & Ireland News', 'Al Jazeera via Yahoo Maktoob News', 'Yahoo Finance', 'MSPoweruser.com', 'Computing.co.uk', 'MWC News', 'CNBC (subscription)', 'Reuters', 'Bluffton Today', 'FXStreet', 'Nasdaq', 'New York Times', 'ABS-CBNNEWS.com', 'Digital Trends via Yahoo! News', 'The Edge Markets MY', 'The National', 'EuroNews', 'The Grio', 'TechTarget', 'Seeking Alpha', 'St. Joseph News-Press', 'GlobeNewswire via Yahoo! Finance', 'Economic Times', 'WJXT Jacksonville', 'AFP via Yahoo! News', 'WCCFtech (blog)', 'AOL News', 'Asia Pacific Report', 'BBC News', 'Ghacks Technology News', 'The Register', 'Business Insider Australia', 'Bloomberg', 'MakeUseOf', 'Yahoo Finance', 'InfoWorld', 'The Indian Express', 'The Week Magazine', 'Reuters', 'Middle East Forum (blog)', 'Stars and Stripes', 'WTHR Indianapolis', 'MSPoweruser.com', 'Independent Online', 'Yahoo7 News', 'Consumer Reports via Yahoo! Finance', 'American Thinker', 'Bloomberg', 'RealClearPolitics', 'Gameranx (blog)', 'Fox News', 'Business Standard India', 'The Times of India', 'Sputnik International', 'SFGate', 'Associated Press via Yahoo! Finance', 'Bloomberg via Yahoo! Finance', 'Startups.co.uk', 'The Baltic Course', 'Business Spectator', 'BreakingNews.ie', 'Yahoo Tech', 'YugaTech', 'Huffington Post', 'Economic Times', 'Memphis Business Journal', 'Associated Press via Yahoo! India News', 'WinBeta', 'Los Angeles Times', 'Daily Caller', 'AFP News via Yahoo! Singapore News', 'Jerusalem Post Israel News', 'CBC.ca', 'AFP via Yahoo! India News', 'Chicago Tribune', 'Reuters via Yahoo! Finance', 'AllAfrica.com', 'The Verge via Yahoo! News', 'Daily Sun', 'The Atlantic', 'AllAfrica.com', 'Bloomberg via Yahoo! Finance', 'POLITICO.eu', 'InformationWeek', 'Indianapolis Star', 'Reuters', 'Middle East Online', 'The New Times', 'euronews', 'Broadband TV News', 'Voice of America', 'CNN', 'Reuters via Yahoo! Sports', 'Houston Chronicle', 'Business Insider Australia', 'MSPoweruser.com', 'BGR News via Yahoo! News', 'Reuters', 'Economic Times', 'Business Insider', 'Slashdot', 'Reuters via Yahoo UK & Ireland News', 'NBCNews.com', 'China Daily', 'Breitbart News', 'Inquirer.net', 'Engadget', 'Open Democracy', 'WinBeta', 'News & Observer', 'Quartz via Yahoo! Finance', 'Voice of America', 'Stuff.co.nz', nan, 'ABC Online', 'Shanghai Daily (subscription)', 'Computerworld', 'GSMArena.com', 'MSPoweruser.com', 'Quad City Times', 'Nasdaq', 'MarketWatch', 'Bangkok Post', 'WND.com', 'WMUR Manchester', 'The Register', 'Bloomberg via Yahoo! Finance', 'UpperMichigansSource.com', 'Bloomberg', 'CTV News', 'Engadget', 'Digital Trends via Yahoo! Sports', 'New York Times', 'CNBC', 'Washington Examiner', 'Telecompaper (subscription)', 'NewsFactor Network', 'Independent Reporter', 'Wall Street Journal', 'Zacks.com', 'Stuff.co.nz', 'Raw Story', 'Reuters', 'Chicago Tribune', 'Seattle Times', 'The Wall Street Journal via Yahoo Canada Finance', 'The Verge', 'ABC News', 'The Missoulian', 'AllAfrica.com', 'Nation News', 'PR Newswire (press release)', 'Tnooz', 'WinBeta', 'The Straits Times', 'Forbes', 'TheCable', 'USA TODAY', 'SuperSite for Windows', 'Financial Times', 'ABC News', 'WRBL', 'AAP via Yahoo! New Zealand Finance', 'WVLT', 'Kansas City Star (blog)', 'Business Insider', 'Al-Bawaba', 'Neowin', 'Politico', 'Daily Mail', 'Fox News', 'Seeking Alpha', 'The Intercept', 'Newsweek', 'USA TODAY', 'The Spokesman-Review', 'Sputnik International', 'Seattle Times', 'NAIJ.COM', 'The Arab Daily News', 'WinBeta', 'Wichita Eagle', 'Gigaom', 'The Guardian', 'NPR', 'Hot Air', 'Reuters', 'The Independent', 'Tucson News Now', 'AAP via Yahoo!7 Finance', 'The Courier', 'Marketplace.org', 'Videogamer.com', 'Reuters', 'Palestine Herald Press', 'Town Hall', 'Reuters', 'BigPond News', 'Eyewitness News', 'BetaNews', 'Fusion', 'Business Insider', 'TechTarget', 'Daily Caller', 'gulfnews.com', 'Huddersfield Daily Examiner', 'ABC News', 'Economic Times', 'Chicago Tribune', 'The Seattle Times', 'Newham Recorder', 'Houston Chronicle', 'USA TODAY', 'Daily Caller', 'The Australian Financial Review', 'Computer World Australia', 'Reuters', 'Daily Caller', 'ZDNet', 'Financial Post', 'USA TODAY', 'International Business Times', 'Lifehacker', 'CBS 19 Tyler', 'Irish Independent', 'International Business Times', 'iamWire', 'Gawker', 'Reuters', 'Inquirer', 'Daily Mail', 'ABC News', 'The Hill', 'CNN', 'Casper Star-Tribune Online', 'Reuters', 'Philippine Star', 'Economic Times', 'Pulse Nigeria', 'The Express Tribune', 'AAP via Yahoo! New Zealand Finance', 'The Nation', 'Destructoid', 'Cosmopolitan.com', 'Channel News Asia', 'The Denver Post', 'Foreign Policy (blog)', 'Dallas Business Journal (blog)', 'Zimbabwe Independent', 'New York Times', 'The Times (subscription)', 'Sputnik International', 'MarketWatch', 'BBC News', 'WDSU New Orleans', 'Ubergizmo', 'Tucson News Now', 'The Hill', 'Manila Bulletin', 'Associated Press via Yahoo! New Zealand Finance', 'Mother Jones', 'The Huffington Post', 'Digital Trends', nan, 'Topeka Capital Journal', 'RT', 'DefenseNews.com', 'Reuters via Yahoo! News', 'PC World', 'The Hill', 'CNBC', 'Breitbart News', 'Hindustan Times', 'Forbes', 'fox6now.com', 'Canadian HR Reporter', 'Bluefield Daily Telegraph', 'Radio New Zealand', 'Economic Times', 'U.S. News & World Report (blog)', 'TheBlaze.com', 'India.com', 'The Houma Courier', 'Reason (blog)', 'The Inquisitr', 'Daily Caller', 'USA TODAY', 'WinBeta', 'TIME', 'MarketPulse (blog)', 'Profit Confidential', 'Redmond Channel Partner', 'Latin Times', 'Computer World Australia', 'The Seattle Times', 'Digital Trends via Yahoo! News', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'WJXT Jacksonville', 'KXAN.com', 'The Australian Financial Review', 'Economic Times', 'Palestine Herald Press', 'News West 9 Midland', 'rediff.com', 'Balkan Insight', 'Voice of America', 'The Guardian', 'Cherry Hill Courier Post', 'MSNBC', 'The Guardian', 'StreetInsider.com', 'South China Morning Post', 'Center for Research on Globalization', 'DNA India', 'www.worldbulletin.net', 'Toronto Sun', 'European Jewish Press', 'Business in Vancouver', 'Computerworld', 'Stuff', 'Vox', 'Economic Times', 'Bloomberg', 'CBS News', 'Jakarta Post', 'Palestine Herald Press', 'Daily Caller', 'Daily Caller', 'Computer Business Review', 'NBCNews.com', 'Huffington Post', 'Washington Examiner', 'Reuters via Yahoo! News', 'Fashionista (blog)', 'Wall Street Journal', 'RTT News', 'Breitbart News', 'KELO AM-FM', 'The Nation', 'Digital Trends', 'DNAinfo', 'Bloomberg', 'PR Newswire (press release)', 'Nintendo Life', 'Associated Press via Yahoo! News', 'Bloomberg', 'MedCity News', "Investor's Business Daily", 'Irish Times', 'Financial Times', 'Reuters UK', 'The Oshkosh Northwestern', 'Anadolu Agency', 'Newsmax', 'Bloomberg via Yahoo! Finance', 'Financial Post', 'Sydney Morning Herald', 'Sputnik International', 'New York Times', 'Daily Mail', 'NDTV', ' ', 'Boston Herald', 'Digital Trends via Yahoo! Sports', 'VICE News', nan, 'Palestine News Network', 'BetaNews', 'Edmunds.com', 'Bloomberg', 'Business Insider via Yahoo! Finance', 'The Record', 'ARNnet', 'Al Jazeera via Yahoo Maktoob News', 'Motley Fool', 'Oilprice.com via Yahoo! Finance', 'CNET', 'Huffington Post', 'Associated Press via Yahoo UK & Ireland News', 'The Straits Times', 'The Federalist', 'Reuters via Yahoo! Finance', 'Seeking Alpha', 'Thomas Reuters Fondation', 'NESN.com', 'PR Newswire via Yahoo! Finance', 'The Australian Financial Review', 'New Vision', 'Press Release Service (press release)', 'Yeni \x9d\x9dafak English (press release)', 'The Christian Science Monitor', 'Bloomberg via Yahoo! Finance', 'SuperSite for Windows', 'Wall Street Journal (blog)', 'WPTZ The Champlain Valley', 'http://wales.gov.uk/', 'Laptop Mag', 'Ynetnews', 'Reuters via Yahoo! Finance', 'WGRZ.com', 'Zacks via Yahoo! Finance', 'Center for Research on Globalization', 'Business Wire (press release)', 'VentureBeat', 'Independent Online', 'Lifehacker Australia', 'Reuters', 'Otago Daily Times', 'PC Magazine', 'MSPoweruser.com', "L'Humanité", 'USA TODAY', 'Mother Jones', 'Lifehacker Australia', 'Next Big Future', 'The Grio', 'Middle East Online', 'AppAdvice', 'Co.Design', 'USA TODAY', 'CIO Today', 'Softpedia News', 'Business Insider', 'Digital Trends via Yahoo! News', 'Brookings Institution (blog)', 'Fox News', 'ABC News', 'Silicon Valley Business Journal (blog)', 'Palestine Herald Press', 'The Record', 'New York Post', 'The Nation', 'MSPoweruser.com', 'International Business Times', 'Ars Technica', 'TIME', 'Business Insider Australia', 'Social Europe', 'Washington Post', 'Yahoo Finance via Yahoo! News', 'The Seattle Times', 'iProgrammer', 'Motley Fool', 'New York Times', 'MuMbrella', 'New Republic', 'Neowin', 'Market Realist via Yahoo! Finance', 'Financial Times', 'EconoTimes', 'Washington Post', 'Independent Reporter', 'Newsday', 'Telegraph.co.uk', 'The Economist', 'Yahoo News', 'SlashGear', 'Komando', 'ComputerworldUK', 'Fox News', 'Bloomberg', 'Hampshire Chronicle', 'New York Times', 'Yahoo News', 'The Manila Times', 'Seattle Times', 'The Register', 'Economic Times', 'MetroNews Canada', 'Daily Caller', 'TIME', 'AFP via Yahoo! India News', 'The Hindu', 'Vox', 'WinBeta', 'CIO Dive', 'Neowin', 'MENAFN', 'CBS 19 Tyler', 'The Fiscal Times', 'Manila Bulletin', 'The Hill (blog)', 'Yahoo7 News', 'PR Newswire (press release)', 'PC Magazine', 'TASS', 'Market Realist via Yahoo! Finance', 'CounterPunch', 'Fox News', 'Los Angeles Times', 'Sputnik International', 'Haitilibre.com', 'The Chicago Monitor', 'Kilgore News Herald', 'Times of India', 'The Globe and Mail', 'GeekWire', 'Huffington Post Canada', 'Bloomberg via Yahoo! Finance', 'WND.com', 'EJ Insight', 'AFP via Yahoo! News', 'Digital Trends via Yahoo! Sports', 'PC World', 'The Post', 'Business Insider', 'Gizmodo', 'Daily Mail', 'The Hill (blog)', 'Reuters via Yahoo! News', 'ABC Online', '9 to 5 Mac', 'Business Insider', 'THISDAY Live', 'Forbes', 'Tech2', 'The Week Magazine', 'The National Interest Online (blog)', 'ENPI Info Centre', 'Forbes', 'HSUS News', 'Softpedia News', 'Jerusalem Post Israel News', 'MarketWatch', 'Xinhua', 'The National', 'WIRED', 'MSPoweruser.com', 'Newsexaminer', 'Bloomberg', 'AllAfrica.com', 'Bloomberg via Yahoo! Finance', 'CTV.ca', 'Reuters via Yahoo! Sports', 'CTV News', 'Daily Caller', 'Jakarta Post', 'Reuters', 'The Jewish Press', 'ZDNet UK', 'Eyewitness News', 'Digital Journal', 'The Fresno Bee', 'CBC.ca', 'Los Angeles Times', 'The Economist', 'DailyFX', 'Times of India', 'WinBeta', 'Sky News via Yahoo Canada News', 'Intifada Palestine', 'Arab News', 'CBC.ca', 'Reuters Middle East via Yahoo Maktoob News', 'The Indian Express', 'Computer Weekly', 'Huffington Post Canada', 'Investorplace.com', 'euronews', 'Reuters via Yahoo! News', 'israel heute ltd.', 'www.worldbulletin.net', 'Wall Street Journal', 'Northwest Herald', 'Palestine News Network', 'Business Insider via Yahoo! Finance', 'Ahram Online', 'The Wall Street Journal via Yahoo! Finance', 'Associated Press via Yahoo! News', 'Centre Daily Times', 'Business Insider via Yahoo Canada Finance', 'Fox News', 'FOX 28 South Bend', 'National Review Online', 'NPR', 'Town Hall', 'See It Market (blog)', 'AAP via Yahoo!7 Finance', 'Wall Street Journal', 'Olive Press', 'RealClearPolitics', 'Great Falls Tribune', 'TheStreet.com', 'Gold Coast Bulletin', 'Reuters', '+972 Magazine', 'Washington Post', 'Forbes', 'TheBlaze.com', 'TheStreet.com', 'Sky News via Yahoo Canada News', 'TechCrunch', 'The Indian Express via Yahoo! India News', 'Associated Press via Yahoo! Philippines News', 'Microsoft - Channel 9', 'Press Association via Yahoo UK & Ireland News', 'Sky News via Yahoo Canada News', 'NL Times', 'Right Wing Watch', 'Business Insider', 'Los Angeles Times', 'Gippsland Times', 'UN News Centre', 'The Age', 'Co.Exist', 'Irish Times', 'The Guardian', 'MarketWatch', 'Reuters', 'NetGuide NZ', 'AndroidOrigin', 'Big Think', 'FiveThirtyEight', 'BBC News', 'www.worldbulletin.net', 'Huffington Post', 'Barca Blaugranes (blog)', 'Times of India', 'Vanguard', 'BDlive', 'ThinkProgress', 'Stock World', 'Huffington Post', 'USA TODAY', 'Daily Mail', 'The Bitbag', 'The Verge via Yahoo! News', 'The Conversation UK', 'The Canadian Press via Yahoo Canada News', 'Marketwired via Yahoo! Finance', 'euronews', "Kuensel, Buhutan's National Newspaper", 'WAFA - Palestine News Agency', 'CNBC via Yahoo! Finance', 'Thurrott.com (blog)', 'Associated Press via Yahoo! News', 'CNBC', 'Palestine Herald Press', 'Economic Times', 'Deutsche Welle', 'The Exponent Telegram (press release) (registration)', 'BusinessDay', 'PoliticusUSA', 'AFP via Yahoo! News', 'JOC.com', 'Eyewitness News', 'RT', 'Reuters via Yahoo! News', 'RTE News', 'Wall Street Journal (blog)', 'Bangladesh News 24 hours', 'Bloomberg via Yahoo! Finance', 'ZDNet', 'Huffington Post', 'China Digital Times', 'Channel NewsAsia', 'Tablet PC Review', 'CHOICE', 'CTV News', 'WMPoweruser.com', 'Scoop.co.nz', 'Business Insider', 'Forbes', 'DZ Foot', 'Los Angeles Times', 'Journal and Courier', 'NBCNews.com', 'Yahoo News via Yahoo Canada News', 'Forbes', 'Bloomberg BNA', 'NZCity', 'BaltimoreRavens.com', 'Softpedia News', 'Tech Times', 'Bloomberg', 'UPI', 'Al-Bawaba', 'AFP via Yahoo! India News', 'TechTarget', 'Los Angeles Times', 'The Wall Street Journal', 'The Daily Star', 'Economic Times', 'TheBlaze.com', 'BBC News', 'CBS New York', 'Newsmax', 'Reuters via Yahoo! Finance', 'Kuwait News Agency', '9 to 5 Google', 'New York Times', 'EconoTimes', 'NBC NEWS', 'KTRE Lufkin and Nacogdoches', 'AllAfrica.com', 'Economic Times', nan, 'Economic Times', 'New York Times', 'New York Post', 'PC World', 'TechFrag', 'Jakarta Post', 'THE BUSINESS TIMES', 'Quartz', 'Bloomberg', 'The Australian', 'BBC News', 'Hybrid Cars News', 'Billings Gazette', 'Salon', 'Los Angeles Times', 'Huffington Post', 'The Verge via Yahoo! News', 'The Washington Times', 'Washington Times', 'New York Times', 'CDA News', 'Moneyweb.co.za', 'WTVD-TV', 'The Independent', 'WHSV', 'University World News', 'PC World', 'ChronicleLive', 'StreetInsider.com (blog)', 'Re/code', 'WinBeta', 'ABC Local', 'Cincinnati Business Courier (blog)', 'Business Insider', 'CNN International', 'www.worldbulletin.net', 'TASS', 'The Wall Street Journal', 'The Guardian', 'MedPage Today', 'Washington Post', 'FOX 19 Cincinnati', 'Association France Palestine Solidarit\x9d\x9d', 'The Jewish Press', 'Neowin', 'TIME', 'Associated Press via Yahoo! News', 'The New Indian Express', 'Business Insider', 'Reuters', 'Tribune-Review', 'Palestine Herald Press', 'Intifada Palestine', 'Business Insider via Yahoo! Finance', 'Business Insider', 'The Independent Florida Alligator', 'Irish Examiner', 'CBC.ca', 'KLTV 7 Tyler', 'TheBlaze.com', 'CRN', 'WinBeta', 'Huffington Post', 'Seattle Times', 'The Guardian', 'CBC.ca', 'Al-Ahram Weekly', 'Inquirer', 'Outlook India', '+972 Magazine', 'AFP via Yahoo! India News', 'Benzinga', 'CNBC', 'The Slovak Spectator', 'Sun-Sentinel', 'Arab News', 'Al-Bawaba', 'Business Standard', 'PR Newswire via Yahoo! Finance', 'Aberdeen Press and Journal', 'Windows Central', 'EUobserver', 'WAFA - Palestine News Agency', 'Business Insider via Yahoo! Finance', 'TechCentral', 'WinBeta', 'Irish Examiner', 'Business Standard', 'MyStatesman.com', 'The Indian Express via Yahoo! India News', 'WBAL Baltimore', 'KSAT San Antonio', 'Bloomberg', 'London Evening Standard', 'Reuters Middle East via Yahoo Maktoob News', 'Mediaite', 'AFP via Yahoo! News', 'CNN', 'Huffington Post', "Tom's Hardware", 'This is Money', 'European Parliament (press release)', 'Financial Times', 'International Business Times UK', 'Moneycontrol.com', 'ExaminerPost.com (blog)', 'Ars Technica', 'Syracuse.com', 'Yahoo News', 'Bangladesh News 24 hours', 'ENPI Info Centre', 'Huffington Post UK', 'MSNBC', 'Reuters', 'India.com', 'Irish Independent', 'The Hill', 'Kotatv', 'IBNLive', 'CNN', 'AllAfrica.com', 'Miami Herald', 'Business Insider via Yahoo UK & Ireland Finance', 'The Verge', 'The Guardian', 'The New Yorker', 'NPR', 'The Rock Hill Herald', 'mySanAntonio.com', 'MediaPost', 'Hindustan Times', 'Daily Caller', 'Digital Trends via Yahoo! News', 'Financial Times', 'Neowin', 'Bangkok Post', 'CNN Money', 'NumbersUSA', 'The Hill', 'TASS', 'NPR', 'Politico', 'Radio New Zealand', 'PC World', 'Reuters via Yahoo! Finance', 'EcoWatch', 'Gothamist', 'WMPoweruser.com', 'Business Wire (press release)', 'Dexigner', 'WDSU New Orleans', 'Vanguard', 'The Washington Times', 'Reuters via Yahoo! Sports', 'MIS Asia', 'New York Daily News', 'Palestine News Network', 'The Times of Israel', 'Reuters', 'Small Business Trends', 'CNBC', 'CNN', 'Business Wire via Yahoo! Finance', 'The Fiscal Times via Yahoo! Finance', 'GeekWire', 'BBC News', 'AFP via Yahoo!7 Finance', 'Sierra Leone Telegraph', 'The Fiscal Times via Yahoo! News', 'MaltaToday', 'Sky News Australia', 'Reuters', 'Vulture', 'Economic Times', 'Gizmag', 'ABC News', 'Alton Telegraph', 'Al-Monitor', 'IANS via Yahoo Maktoob News', 'The Hindu', 'Mashable', 'Forbes', '14 WFIE Evansville', 'iT News', 'Reuters', 'FOX Business', 'Associated Press via Yahoo! Philippines Sports', 'Seattle Times', 'Telegraph.co.uk', 'TASS', 'Network World', 'Politico', 'MarketWatch', 'Reuters', 'Business Insider', 'Open Democracy', '9 News Denver', 'U.S. News & World Report', 'Fox News', 'Redmondmag.com', 'MSNBC', 'Stock & Land', 'Pocket-lint.com', 'Brisbane Times', 'OregonLive.com', 'International Business Times', 'Seattle Times', 'Business Insider', 'gulfnews.com', 'Breitbart News', 'Neowin', 'WPTZ', 'Billboard', 'Daily Mail', 'Minnesota Public Radio', 'Small Business Trends', 'Middle East Eye', 'Politico', 'Times of Malta', 'InfoWorld', 'Zacks via Yahoo! Finance', 'The Boston Globe', 'The Sofia Globe', 'New York Times', 'Phone Arena', 'telecomasia.net', 'The Japan Times', 'MSPoweruser.com', 'Newsweek', 'USA TODAY', 'Economic Times', 'CBS Local', 'Digital Trends via Yahoo! Finance', 'The Age', 'The Indian Express', 'ABC News', 'Reuters via Yahoo! Finance India', 'RushLimbaugh.com', 'AFP via Yahoo!7 Finance', 'MTV.com', 'The Diplomat', 'Reason (blog)', 'AFP via Yahoo! India News', 'NBC Bay Area', 'Associated Press via Yahoo! Finance', 'The Express Tribune', 'Yuma Sun', 'Politico', 'DNA India', 'WPVI 6abc Philadelphia', 'Bloomberg', 'ABC News', 'Warc', 'VentureBeat', 'YourStory.com', 'CNBC', 'ZDNet', 'Weyburn Review', 'OneNewsNow', 'Washington Post', 'GameSpot', 'StreetInsider.com', 'Al-Bawaba', 'Business Insider', 'Laptop Mag', 'The Press', 'CNN', 'TheWrap', 'The Conversation US', 'Kuwait News Agency', 'Financial Post', 'Brandon Sun', 'Wired News', 'Business Insider via Yahoo! Finance', 'Fortune', 'Forbes', 'CKNW News Talk 980', 'Christian Science Monitor via Yahoo! News', 'Softpedia News', 'Associated Press via Yahoo! Philippines Sports', 'IBNLive', 'The Record', 'Knoxville News Sentinel', 'AFP Relax News via Yahoo! News', 'WAMC', 'International Business Times', 'PCWorld', 'ThinkProgress', 'Reuters via Yahoo! Finance India', 'Business Wire via Yahoo! Finance', 'Bloomberg', 'Denver Post', 'Charlotte Observer', 'Telegraph.co.uk', 'Washington Post', 'The Globe and Mail (subscription)', 'USA TODAY', 'FIFA', 'Data Center Knowledge', 'Manila Bulletin', 'Profit Confidential', 'New York Times', 'New York Times', 'Business Insider via Yahoo Canada Finance', 'Newsday', 'Investopedia', 'STAT', 'azcentral.com', 'Forbes', 'The Guardian', 'TechCrunch', 'PC World', 'International Business Times', 'Hindu Business Line', 'TechCrunch', 'Sin Chew Jit Poh', 'The Atlantic', 'Economic Times', 'Ars Technica', 'Bloomberg via Yahoo! Finance', 'Videogamer.com', 'Newsweek', 'Bloomberg', 'InformationWeek', 'NPR', 'The Hill', 'Middle East Monitor', 'Breitbart News', 'Vanity Fair', 'Business Standard', 'Xinhua', 'ABC News', 'Digital Trends via Yahoo! News', 'Mondoweiss', 'Africanews (press release)', 'AFP via Yahoo! Finance', 'The Canberra Times', 'Reuters via Yahoo! Finance', 'Bloomberg', 'AFP via Yahoo! News', 'Los Angeles Times', 'NAIJ.COM', 'Washington Examiner', 'The Hill (blog)', 'New Straits Times Online', 'KXXV Waco', 'Daily Northwestern', 'Economic Times', 'Press-Enterprise', 'LubbockOnline.com', 'Al-Monitor', 'Al Jazeera via Yahoo Maktoob News', 'MSPoweruser.com', 'New York Times', 'Sydney Morning Herald', 'WBUR', 'Economic Times', 'Cato Institute', 'CNET', 'Business Insider', 'American Spectator', 'Re/code', 'Calgary Sun', 'The Hill', 'gulfnews.com', 'WIRED', 'fox5sandiego.com', 'Associated Press via Yahoo! News', 'Daily Sabah', 'Redmondmag.com', 'TIME', 'MSPoweruser.com', 'Tech Insider (blog)', 'The Guardian', 'NBCNews.com', 'NJ.com', 'The New Zealand Herald', 'The Globe and Mail', 'Politico', 'CNN', 'Vanguard', 'gulfnews.com', 'CBS Sports', 'PC World', 'CNET', 'The Boston Globe', 'Truthdig', 'WinBeta', 'Associated Press via Yahoo! New Zealand Finance', 'Reuters via Yahoo UK & Ireland Sport', 'Thomas Reuters Fondation', 'NBCNews.com', 'Toronto Star', 'PR Newswire (press release)', 'CNBC', 'eWeek', 'SB Nation', 'ABC News', 'TechRadar', 'Your News Now', 'IT PRO', 'WPTZ', 'MSPoweruser.com', 'Mediaite', 'ABC News', 'ZDNet', 'Ars Technica', 'Mediaite', 'CRN Australia', 'Fight Back! Newspaper', 'The Seattle Times', 'The Salinas Californian', nan, 'Hindustan Times', 'Sydney Morning Herald', 'Washington Post', 'Popular Science', 'Market Watch', 'Manila Bulletin', 'Voice of America', 'New York Times', 'Fox News Latino', 'VentureBeat', 'Associated Press via Yahoo Maktoob News', 'Toronto Star', 'Fast Company', 'The Register', 'CNET', 'Nyasa Times', 'New York Times', 'Insurance Journal', 'Christian Post', 'Breitbart News', 'Search Engine Journal', 'Bloomberg', 'The Australian', 'The Guardian', 'CNBC', 'NBC NEWS', 'Daily News & Analysis', 'PR Newswire via Yahoo! Finance', 'Business Insider', 'TechRadar', 'New York Times', 'Times of Oman', 'New York Times', 'ENPI Info Centre', 'Mediaite', 'CBC.ca', 'PoliticusUSA', 'Washington Times', 'Sputnik International', 'MSPoweruser.com', 'Business Insider', 'Stuff.co.nz', 'Tech Insider', 'USA TODAY', 'The Next Web', 'TechCrunch', 'ABC News', 'Contra Costa Times', 'Fox News', 'Motley Fool', 'Bleeding Cool News', 'Washington Post', 'RenewEconomy', 'Voice of America', 'AFP via Yahoo! News', 'Adweek', 'Government Technology', 'Fortune', 'Wall Street Journal', 'Chicago Sun-Times', 'NBC NEWS', 'International Business Times UK', 'International Middle East Media Center', 'Sputnik International', 'Tech Times', 'Reuters via Yahoo! Singapore News', 'The Sofia Globe', 'Financial Times', 'The Globe and Mail (subscription)', 'Associated Press via Yahoo! Singapore Sports', 'Sky News Australia', 'AFP via Yahoo! News', 'Top Tech News', 'Livemint', 'AFP via Yahoo! News', 'Khaleej Times', 'Sputnik International', 'Reuters', 'Tempo.co', 'New Hampshire Union Leader', 'WIS News 10 Columbia', 'The Wall Street Journal', 'The Australian Financial Review', 'Bloomberg', 'Business Insider', 'KLTV 7 Tyler', 'Hartford Courant', 'The Times of India', 'Wall Street Journal', '24/7 Wall St. via Yahoo! Finance', 'The Guardian', 'Digital Trends via Yahoo! Sports', 'CIO', 'New York Post', 'MIS Asia', 'CityLab', 'CNBC', 'Breitbart News', 'MarketWatch', 'TechRadar', 'MarketWatch', 'Business Insider via Yahoo! Finance', 'Minneapolis Star Tribune', 'Salt Lake Tribune', 'Los Angeles Times', 'American Thinker (blog)', 'National Review Online', 'Huffington Post', 'New Republic', 'The Seattle Times', 'Yahoo News', 'wwlp.com', 'China Daily', 'INFORUM', 'Washington Post', 'The Star, Kenya', 'RenewEconomy', 'NPR', 'MSPoweruser.com', 'eWeek', 'Vanguard', 'KSL.com', 'CBC.ca', 'Sportsnet.ca', 'Raw Story', 'Wall Street Journal', 'WinBeta', 'Reuters', 'PR Newswire', 'Associated Press via Yahoo! News', 'New Ross Standard', 'The New Zealand Herald', 'Daily News Egypt', 'ForexLive', 'TPM', 'Design & Trend', 'GameSpot', 'Business Insider', 'Computer World Australia', 'The Hill', 'ABC News', 'Institutional Investor (blog)', 'Huffington Post Canada', 'New York Daily News', 'FOX Business', 'The Independent', 'VG247', 'MSPoweruser.com', 'The Christian Science Monitor', 'Financial Times', 'The Guardian', 'The New Yorker', 'GeekWire', 'PR Newswire (press release)', 'CDA News', 'The San Luis Obispo Tribune', 'New York Times', 'New York Times', 'Huffington Post', 'Irish Times', 'InfoWorld', 'Channel NewsAsia', 'AFP via Yahoo! India News', 'Digital Trends via Yahoo! News', 'Daily Mail', 'Associated Press via Yahoo! Philippines News', 'Morocco World News', 'The Inquisitr', 'ABC News', 'The Atlantic', 'Bloomberg', 'Reuters', 'AFP via Yahoo! News', 'Reuters', 'The Guardian', 'New York Times', 'Democracy Now!', 'Palestine News Network', 'Reuters UK', 'Politico', 'Western Journalism', ' ', 'The Financial Express via Yahoo! Finance India', 'NDTV', 'The Dorset Echo', 'Truth-Out', 'NBCNews.com', 'WinBeta', 'NBCNews.com', 'Right Wing Watch', 'ITProPortal', 'WWD', 'International Business Times', 'The Sun Daily', 'New York Times', 'WinBeta', 'Reuters via Yahoo UK & Ireland News', 'AOL News', 'www.worldbulletin.net', 'TechNewsWorld.com', 'AFP via Yahoo! Finance', 'Mondoweiss', 'ABC News', 'IANS via Yahoo Maktoob News', 'Bloomberg', 'Seeking Alpha', 'azcentral.com', 'Democracy Now!', 'The Australian', 'KABC-TV', 'The Register', 'Autoblog (blog)', 'The Denver Post', 'The Hill (blog)', 'KCBD-TV Lubbock', 'Forbes', 'Ars Technica', 'The Guardian', 'WHO-TV 13 Des Moines', 'American Thinker', 'PYMNTS.com', 'gulfnews.com', 'IANS India Private Limited/Yahoo India News via Yahoo! Singapore News', 'The Atlantic', 'Sky News', 'Knowledge@Wharton', 'Bloomberg', 'Accesswire via Yahoo! Finance', 'The Week Magazine', 'Thomson Reuters Foundation', 'Times of India', 'New York Post', 'The Times of Israel', 'The Indian Express via Yahoo! India News', 'Flightglobal', 'CNN', 'The Daily Banter', 'Huffington Post', 'Sputnik International', 'The Economist (blog)', 'Bloomberg', 'IANS via Yahoo Maktoob News', 'TheBlaze.com', 'Wall Street Journal', 'The Hillsdale Daily News', 'Business Wire via Yahoo! Finance', 'Bloomberg', 'Sydney Morning Herald', 'Bloomberg', 'Bloomberg', 'WHDH-TV', 'TASS', 'Associated Press via Yahoo! Finance', 'WPTV.com', 'CNBC', 'Economic Times', 'Western Journalism', 'Neowin', 'Politico (blog)', 'Youth Ki Awaaz', 'Associated Press via Yahoo! News', 'Business Finance News', 'The Verge', 'CNN', 'Bloomberg', 'Customer Think', 'Reuters via Yahoo! Finance', 'CNSNews.com (blog)', 'Bloomberg', 'Washington Post', 'Milwaukee Journal Sentinel (blog)', 'Intifada Palestine', 'ForexLive', 'Huffington Post', 'Ottawa Citizen', 'Haaretz', 'Marketplace.org', 'Kotaku', 'New York Magazine', 'Business Recorder', 'Android Police', 'Yahoo News', 'DailyNews', 'Herald Scotland', 'AFKInsider', 'CNSNews.com (blog)', 'Daily Beast', 'The Straits Times', 'BBC News', 'Economic Times', 'WinBeta', 'Nikkei Asian Review', 'ZDNet', 'The Hill', 'AlterNet', 'WJXT Jacksonville', 'Computing.co.uk', 'Huffington Post', 'AFP via Yahoo! News', 'Palestine News Network', 'PC World', 'CNBC', 'Yahoo Finance UK', 'Huffington Post', 'Washington Post', 'Christian Science Monitor', 'Forward', "Investor's Business Daily", 'CIOReview (press release)', 'CPI Financial', 'Palestine Herald Press', 'The National Business Review', 'AAP via Yahoo!7 Finance', 'New Zimbabwe.com', 'ZDNet', 'The Spokesman-Review', 'The Fiscal Times', 'Gawker', 'The Malaysian Insider', 'NJ.com', 'CNET', 'The Guardian', 'Yahoo Finance', 'Washington Post', 'Forbes', 'NBCNews.com', 'CNN International', 'Digital Trends via Yahoo! News', 'Benzinga', 'Wall Street Journal', 'The Verge', 'AAP via Yahoo! New Zealand Finance', 'Economic Times', 'CNN Money', 'BetaNews', 'Toledo News Now', 'Fredericksburg.com', '5 Eyewitness News St. Paul', 'Daily Record', 'Chicago Tribune', 'Gulf Today', 'Lifehacker Australia', 'CW39 NewsFix', 'The Jewish Press', 'GeekWire', 'Courier Mail', 'Reuters', 'PR Newswire (press release)', 'The Independent', 'eNCA', 'Bloomberg via Yahoo! Finance', 'Bloomberg', 'The Guardian', 'Multi-Housing News', 'Business Wire via Yahoo! Finance', 'Metro', 'Daily Beast', 'Bloomberg', 'Attack of the Fanboy', 'Washington Post', 'Daily Mail', 'Firstpost', 'The Verge', 'Yorkshire Post', 'Telegraph.co.uk', 'Financial Express Bangladesh', 'OCRegister', 'U.S. News & World Report (blog)', 'Sputnik International', 'Market Watch', 'Digital Trends', 'Wall Street Journal (blog)', 'WinBeta', 'Nasdaq', 'Seattle Times', '9NEWS.com', 'The Hill', 'Daily Mail', 'BBC News', 'ZDNet', 'GOOD Magazine', 'Vox', 'Bloomberg', 'amNY', 'Reuters via Yahoo! Sports', 'SlashGear', 'Sydney Morning Herald', 'IBNLive', 'WND.com', 'Daily Kos', 'Tasnim News Agency (press release)', 'FXStreet', 'Honolulu Civil Beat', 'CNET', 'Ghanaweb.com', 'International Business Times AU', 'Business Recorder', 'Morningstar.com', 'KTLA', 'Daily Beast', 'Hawaii News Now', 'WOAI', 'Arab News', 'WTAE Pittsburgh', 'The Seattle Times', 'Manila Standard Today', 'Shanghai Daily (subscription)', 'The Manila Times', 'CNBC', 'Daily Mail', 'Daily Mail', 'WCCFtech (blog)', 'WinBeta', 'Al Jazeera via Yahoo Maktoob News', 'AFP via Yahoo! India News', 'Intifada Palestine', 'PolitiFact', 'The Hindu', 'InfoWorld', 'Quincy Herald-Whig', 'TASS', 'AlterNet', 'Mashable', 'News24 Nigeria', 'IANS India Private Limited/Yahoo India News via Yahoo! India News', 'CBC.ca', 'Clapway', 'Sustainable Brands', 'The Hill (blog)', 'Intifada Palestine', 'TASS', 'BBC News', 'Bitbag', 'Manila Standard Today', 'SmallBusiness.co.uk', 'Mediaite', 'BetaNews', 'Times of India', 'Spiked', 'LearnBonds', 'Seeking Alpha', 'BuzzFeed News', 'CBC.ca', 'PoliticusUSA', 'Reuters', 'Reuters via Yahoo! Finance', 'Voice of America', 'Reuters via Yahoo! Finance', 'CTV Montreal News', 'Us Weekly', 'Contra Costa Times', 'AFP via Yahoo! India News', 'CTV News', 'New Republic', 'The Advocate', 'AOL News', 'Sky News', 'Huffington Post', 'RealClearPolitics', 'Computer World Australia', 'Daily Signal', 'TheChronicleHerald.ca', 'Softpedia News', 'Yahoo Finance UK', 'KLTV', 'Axis of Logic', 'Associated Press via Yahoo! News', 'The Australian', 'Yahoo7 News', 'Fortune', 'Trend News Agency', 'Philippine Star', 'Financial Post', "Investor's Business Daily", 'Post-Bulletin', 'Business MattersBusiness Matters', 'The Guardian', 'RadioFreeEurope/RadioLiberty', 'Newsday', 'Fortune', 'Market Realist via Yahoo UK & Ireland Finance', 'Hot Air', 'Munchies_ Food by VICE', ' ', 'Daily Echo', 'New York Daily News', 'Wall Street Journal (blog)', 'ThinkProgress', 'WABC-TV', 'Chicago Tribune', 'Firstpost', 'Business Insider via Yahoo UK & Ireland Finance', 'WJXT Jacksonville', 'Reuters via Yahoo! Finance', 'TheStreet.com', 'Gizmag', 'Digital Trends', 'Bay Area Indymedia', 'The Globe and Mail', 'The Irrawaddy News Magazine', 'Economic Times', 'Variety via Yahoo! Finance', 'Reuters', 'The Times of Israel', 'International Business Times', 'FXStreet', 'Associated Press via Yahoo! New Zealand Finance', 'MarketWatch', 'New York Times', 'NBCNews.com', 'Miami Herald', 'TechEye', 'AAP via Yahoo!7 News', 'Politico', 'OregonLive.com', 'Arkansas Business', 'AFP via Yahoo!7 News', 'TheBlaze.com', 'Business Standard', 'Washington Examiner', 'Seeking Alpha', 'Washington Post', 'Business Spectator', 'AFP via Yahoo! News', 'The Indian Express', 'CNBCAfrica.com', 'The Chronicle Herald', 'Providence Business News', 'TechEye', 'Nikkei Asian Review', 'Arab News', 'Deutsche Welle', 'Bloomberg', "People's World", 'CNN Money', 'Yahoo News', 'WCVB Boston', 'Wall Street Journal', 'Haaretz', 'Billboard', 'Motley Fool', 'Express.co.uk', 'Nasdaq', 'Android Police', 'The Wall Street Journal', 'Bloomberg', 'Inquirer', 'Wired News', 'Investing.com', 'Bloomington Pantagraph', 'Computer World Australia', 'Washington Times', 'USA TODAY', 'U.S. News & World Report (blog)', 'Reuters', 'Seeking Alpha', 'Bloomberg', 'Yahoo Finance', 'Computerworld', 'TPM', 'Wall Street Journal', 'AsiaOne', 'Softpedia News', 'MSNBC', 'Thurrott.com (blog)', 'Washington Post', 'Project Syndicate', 'Palestine News Network', 'CBS News', 'Bloomberg via Yahoo UK & Ireland Finance', 'Yahoo News', 'CNW Group via Yahoo Canada Finance', 'VentureBeat', 'International Business Times', 'BruDirect.com', 'New York Daily News', 'Reuters', 'WDIV Detroit', 'Breitbart News', 'BBC News', 'Sky News Australia', 'Algemeiner', 'Albany Business Review', 'SuperSite for Windows', 'International Business Times', 'The Independent', 'MarketWatch via Yahoo! Finance', 'The Hindu', 'Los Angeles Times', 'The Economist', 'CNBC', 'NewsDay', 'MIT Technology Review', 'Reuters via Yahoo! News', 'TheBlaze.com', 'WOODTV.com', 'Economic Times', 'Fox News', 'Al-Monitor', 'Fair Observer', 'HQ Grande Prairie', 'The Business Times Singapore', 'The New Indian Express', 'Associated Press via Yahoo! News', 'Phone Arena', 'Al Jazeera America', 'Right Wing Watch', 'Taipei Times', 'ITV.com', 'Sky News via Yahoo UK & Ireland Finance', 'China Daily', 'BBC News', 'Yahoo News', 'NBC NEWS', 'Blic', 'Press Herald', 'International Business Times', 'Windows Central', 'OneNewsNow', 'Digiday', 'Palestine News Network', 'PR Newswire (press release)', 'RadioFreeEurope/RadioLiberty', 'SBS', 'The Guardian', 'groovyPost', 'Financial Post', 'Reason (blog)', 'Daily Caller', 'Reuters', 'The Jewish Week', 'MSNBC', 'Dallas Sun Times', 'euronews', 'Washington Post', 'Economic Times', 'U.S. News & World Report (blog)', 'Zee News', 'AFP via Yahoo! India News', 'ABC FOX Montana News', 'BBC News', 'NBCNews.com', 'Bloomberg', 'Business Wire via Yahoo! Finance', 'Denver Post', 'Business Insider', 'Associated Press via Yahoo! Finance', 'Threatpost', 'Reuters', 'Breitbart News', 'Washington Times', 'Stuff', 'GlobeNewswire via Yahoo!7 Finance', 'MacNN', 'GamingBolt', 'BDlive', 'Yahoo News', 'The Seattle Times', 'Recombu', 'The Nation - Thailand's English news', 'E-Commerce Times', 'Press Herald', 'BGR', 'Breitbart News', 'KLTV 7 Tyler', 'Nasdaq', 'InterAksyon', 'Phone Arena', 'Reuters via Yahoo! Finance', 'The Buffalo News', 'BGR', 'The Next Web', 'AFP via Yahoo! Finance', 'AFP via Yahoo! News', 'IJ Review', 'StreetInsider.com', 'ZDNet', 'Reuters UK', 'Chicago Tribune', 'PanAm Post (blog)', 'Economic Times', 'WMCTV Memphis', 'Lifehacker Australia', 'ABC News', 'New York Post', 'Bloomberg', 'WinBeta', 'Windows Central', 'Haaretz', 'Cihan News Agency', 'ABC News', 'Shanghai Daily (subscription)', 'Reuters UK', 'KABC-TV Los Angeles', 'TIME', 'CNN', 'Washington Examiner', 'Xinhua', 'RT', 'CNN', 'Pulse.com.gh', 'Al-Arabiya', 'CPI Financial', 'Fortune', 'Digital Trends', 'Middle East Monitor', 'CNNMoney', 'eWeek', 'Daily Star', 'BuzzFeed News', 'Politico', 'Firstpost', 'BBC world', 'CNN', 'Lake Cowichan Gazette', 'Reuters', 'CIO', 'AFP via Yahoo!7 Finance', 'The Canadian Press via Yahoo Canada News', 'Business Recorder (press release) (registration) (blog)', 'USA TODAY', 'Mehr News Agency - English Version', 'Wall Street Journal', 'The Indian Express', 'IT World', 'Chicago Tribune', 'Wall Street Journal', 'Bangladesh News 24 hours', 'Wall Street Journal', 'Mediaite', 'Page Six', 'PR Newswire (press release)', 'MINA', 'Financial Post', 'Engadget', 'IBN live', 'BGR News via Yahoo! News', 'The Day', 'Irvine World News', 'Al Jazeera via Yahoo Maktoob News', 'Independent Catholic News', 'Bloomberg', 'Haaretz', 'the Irish News', 'KTAR.com', 'FOX 8 New Orleans', 'ESPN (blog)', 'The Forward', 'The Hill (blog)', 'WISN Milwaukee', 'Washington Times', 'ForexLive', 'Business Standard', 'The Hill', 'CNN.com', 'Business Insider via Yahoo! Finance', 'The Epoch Times', 'Yahoo7 Finance via Yahoo!7 Finance', 'Hurriyet Daily News', 'ESPN (blog)', 'Times of India', 'Express.co.uk', 'Bloomberg', 'Scoop.co.nz (press release)', 'Bloomberg', 'The Business Times Singapore', 'Radio New Zealand', 'Business Insider via Yahoo Maktoob News', 'Hindu Business Line', 'NBCNews.com', 'AFP via Yahoo! India News', 'The Electronic Intifada', 'POPSUGAR', 'Daily Sabah', 'Syracuse.com', 'Breitbart News', 'Associated Press via Yahoo!7 Finance', 'MENAFN', 'Human Rights First (blog)', 'ZDNet', 'VentureBeat', 'Business Insider', 'FOX 8 New Orleans', 'Reuters via Yahoo! Finance', 'TASS', 'Digital Trends via Yahoo! News', 'USA TODAY', 'BetaNews', 'Yahoo Finance', 'AFP via Yahoo! News', 'Daily Mail', 'KXXV News Channel 25', 'Wisconsin Public Radio News', 'CNET via Yahoo! News', 'Indianapolis Star', 'Hot Hardware', 'Western Journalism', 'Bloomberg', 'DailyO', 'Business Insider', 'Christian Broadcasting Network', 'The Australian Financial Review', 'Newsweek', 'Economic Times', 'AFP via Yahoo! India News', 'Houston Chronicle', 'Wall Street Journal', 'South African Broadcasting Corporation', 'Washington Post', 'Reuters', 'Fortune', 'Nasdaq', 'Daily Signal', '+972 Magazine', 'The National', 'Bloomberg via Yahoo! Finance', 'Bloomberg', 'USA TODAY', 'expressandstar.com', 'The Media Line', 'Zacks via Yahoo! Finance', 'UPI', 'InformationWeek', 'FXStreet', 'CBC.ca', 'Kuwait News Agency', 'Reuters via Yahoo UK & Ireland News', 'Al Jazeera via Yahoo UK & Ireland News', 'Clapway', 'Press Herald', 'GSMArena.com', 'Las Vegas Review-Journal', 'Scoop.co.nz (press release)', 'Huffington Post', 'EContent (press release)', 'Vox', 'Bloomberg', 'Reuters', 'Seeking Alpha', 'Business Wire (press release)', 'Economic Times', 'Bernama', 'WinBeta', 'ACN Newswire via Yahoo!7 Finance', 'Fox News', 'Computerworld', 'ABC Online', 'East Asia Forum', 'The Guardian', 'groovyPost', 'International Business Times', 'San Jose Mercury News', 'ABC News', 'Eyewitness News', 'Market Watch', 'USA TODAY', 'East Bay Times', 'Business Insider Australia', 'Bernama', 'USA TODAY', 'The Hill', 'FOX40', 'Tampa Bay Times', 'Al-Arabiya', 'Digital Trends via Yahoo! News', 'KVOA Tucson News', 'SiliconANGLE (blog)', 'Yahoo Canada Finance - Insight (blog)', 'ABS-CBNNEWS.com', 'Politico', 'Manila Bulletin', 'WGN-TV', 'The Herald', 'Breitbart News', 'Forbes', 'Global News', 'Sky News via Yahoo Canada News', 'Intifada Palestine', 'L'Atelier', 'ZDNet', 'Daily Mail', 'WTOP', 'New York Times', 'Business Insider', 'fox6now.com', 'News Sentinel', 'The Wall Street Journal', 'Washington Examiner', 'CNN International', 'Reuters via Yahoo! News', 'Fox News', 'Times of India', 'For The Win', 'Valley News Live', 'Palestine Herald Press', 'The Muslim News', 'Washington Times', 'The Electronic Intifada (blog)', 'San Jose Mercury News', 'AutomotiveIT International', 'WND.com', 'Reuters', 'Seeking Alpha', 'The Motley Fool', 'Press-Enterprise', 'Canada.com', 'Coconuts Bangkok', 'GlobeNewswire via Yahoo! Finance', 'Vox', 'Daily Caller', 'New York Daily News', 'Vox', 'EconoTimes', 'Nasdaq', 'Aljazeera.com', 'Mashable', 'Toronto Star', 'Microsoft - Channel 9', 'CIO', 'The Register-Guard', 'Salon', 'Palestine Herald Press', 'Nasdaq', 'Financial Times', 'SlashGear', 'AFP via Yahoo! India News', 'Quartz', 'WAFA - Palestine News Agency', nan, 'Al-Arabiya', 'CNET', 'Stuff.co.nz', 'WMTW Portland', 'CBS Miami', 'NPR', 'Network World', 'Palestine Herald Press', 'Market Exclusive', 'Daily Signal', 'Nasdaq', 'Hellenic Shipping News Worldwide', 'The Guardian', 'KSWO Lawton-Wichita Falls', 'Tucson Weekly', 'Profit Confidential', 'CNN', 'Financial Times', 'CNW Group via Yahoo! Finance', 'NOLA.com', 'CNBC', 'India Today', 'The Hill', 'ABC News via Yahoo! News', 'Palestine News Network', 'Wall Street Journal', 'AFP via Yahoo! Finance', 'Australian Policy Online', 'ITV.com', 'Fox News', 'Irish Times', 'International Business Times, India Edition', 'CNBC', 'ITProPortal', 'WMBF News Myrtle Beach', 'CNN', 'Las Vegas Review-Journal', 'TechRadar', 'The Manila Times', 'Fiji Times', 'MetroNews Canada', 'Malay Mail Online', 'Chinatopix', 'Light Reading', 'The Register', 'Palestine Herald Press', 'SiliconANGLE', 'Huffington Post', 'Opposing Views', 'Bloomberg', 'The Week Magazine', 'Arutz Sheva', 'London Free Press', 'Platts (blog)', 'The Drum', 'Enterprise Innovation', 'New York Times', "Investor's Business Daily", 'euronews', 'Bloomberg', 'ANI via Yahoo! India News', 'WXOW 19 La Crosse', 'Common Dreams (press release)', 'The Slovak Spectator', 'SNAPPA Technology via Yahoo UK & Ireland News', 'New Zealand Herald', 'Sputnik International', 'The Straits Times', 'International Business Times via Yahoo UK & Ireland News', 'Mondoweiss', 'Intifada Palestine', 'Palestine News Network', 'Mediaite', 'New Kerala', 'MSPoweruser.com', 'BBC News', 'BBC News', 'Deccan Chronicle', 'MarketWatch', 'Albuquerque Journal', 'Business Insider via Yahoo Maktoob News', 'New York Magazine', 'Yahoo Finance', 'Russian Information Agency Novosti', 'New York Times', 'AL.com', 'Express.co.uk', 'Leek Post & Times', 'WOWT', 'Whitehouse.gov (press release)', 'The Financial Express via Yahoo! Finance India', 'Mintpress News (blog)', 'BBC News', 'NewsBusters (blog)', 'Daily Beast', 'Breitbart News', 'Reuters', 'The Independent', 'Tech Insider (blog)', 'Telegraph.co.uk', 'CBS News', 'Reuters', 'CNBCAfrica.com', 'TASS', 'Reuters via Yahoo UK & Ireland Sport', 'AFP via Yahoo! News', 'Ahram Online', 'InterAksyon', 'Mashable', 'The Ames Tribune', 'Miami Herald', 'Benzinga via Yahoo! Finance', 'Sudbury.com', 'The Huffington Post', 'NBCNews.com', 'Bloomberg', 'WinBeta', 'Haaretz', 'CNBC', 'San Francisco Chronicle', 'Fox News', 'CNBC', 'Ars Technica', 'Engadget', 'CNNMoney', 'AllAfrica.com', 'The Hill (blog)', 'TheBlaze.com', 'WalesOnline', 'PinkNews', 'MENAFN', 'Al Jazeera America', 'Us Weekly', 'News.com.au', 'ELLE.com', 'RealClearPolitics', 'USA TODAY', 'NWCN.com', 'Reuters UK', 'EJ Insight', 'Daily Caller', 'Breitbart News', 'BetaNews', 'Engadget', 'Associated Press via Yahoo! News', 'The Hindu', 'WND.com', 'New York Times', 'New York Daily News', 'The Korea Herald', 'NPR', 'Scientific American', 'WAFA - Palestine News Agency', 'Clarence Valley Daily Examiner', 'OpenDNS Blog (blog)', 'Press TV', 'Bloomberg', 'Bloomberg', 'Newsweek', 'Los Angeles Times', 'Daily News & Analysis', 'Economic Times', 'Ghanaweb.com', 'Reuters via Yahoo Canada News', 'New York Times', 'WAFA - Palestine News Agency', 'Helena Independent Record', 'Market Realist via Yahoo UK & Ireland Finance', 'The Japan Times', 'MIS Asia', 'WinBeta', 'WinBeta', 'CNBC', 'Fusion', 'Jewish Chronicle', 'AFP via Yahoo! News', 'The Nation Newspaper', 'Market Realist via Yahoo! Finance', 'Helena Daily World', 'Daily News', 'AFP via Yahoo! Finance', 'Zee News', 'GameSpot', 'Business Wire (press release)', 'Town Hall', 'The Guardian', 'New Zealand Herald', 'The Fiscal Times', 'Nyasa Times', 'VentureBeat', 'WinBeta', 'Reuters', 'The Fiscal Times', 'Western Journalism', 'Daily Mail', 'RTÉ News', 'WKBW-TV', 'Prime Minister of Canada (press release)', 'Town Hall', 'The News & Observer', 'The New Zealand Herald', 'FiveThirtyEight', 'www.worldbulletin.net', 'Outlook India', 'Business Insider via Yahoo! Finance', 'Belfast Telegraph', 'Search Engine Land', 'Economic Times', 'Hindu Business Line', 'The Guru Investor', 'Mo4ch News (press release) (blog)', 'San Antonio Express-News', 'Forbes', 'Huffington Post UK', 'The Indian Express', 'Breitbart News', 'Ars Technica', 'MTPR', 'Economic Times', 'The Australian', 'AsiaOne', 'Associated Press via Yahoo! Singapore News', 'Fortune', 'InfoQ.com', 'Reuters', 'The Express Tribune', 'TheStreet.com', 'The Christian Science Monitor', 'Lifehacker Australia', 'Business Wire via Yahoo! Finance', 'The Intercept', 'International Solidarity Movement', 'Foreign Policy (blog)', 'E! Online', 'Waterloo Record', 'FOX40', 'Channel NewsAsia', 'Scoop.co.nz (press release)', 'AAP via Yahoo! New Zealand Finance', 'Seeking Alpha', 'The Atlantic', 'The Malaysian Insider', 'www.worldbulletin.net', 'Wall Street Journal', 'Kashmir Media Service', 'Business Standard India', 'Reuters Canada', 'GoodCall News (blog)', 'WinBeta', 'Channel NewsAsia', 'WWD', 'WinBeta', 'Town Hall', 'GhanaWeb', 'Texarkana Gazette', 'Businessinsider India', 'Educators NZ', 'Sputnik International', 'The Australian', 'The Hill', 'Belfast Telegraph', 'ABC News', 'WinBeta', 'Philly.com', 'Redwood Falls Gazette', 'Huffington Post', 'USA TODAY', 'Wall Street Journal', 'Bloomberg', 'MarketWatch', 'Daily Signal', 'Daily Pakistan', 'MLive.com', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'Zacks.com', 'iDigitalTimes.com', 'New Statesman', 'TechCrunch', 'The Seattle Times', 'Reuters via Yahoo! Sports', 'Forbes', 'Al Jazeera via Yahoo UK & Ireland News', 'Brave New Coin', 'PC Magazine', 'IANS India Private Limited/Yahoo India News via Yahoo! Singapore News', 'getreading', 'TheBlaze.com', 'The Daily Star', 'Jerusalem Post Israel News', 'Morningstar', 'Reuters via Yahoo! News', 'VOA News', 'WinBeta', 'Town Hall', 'ITV.com', 'EurActiv', 'Truthdig', 'Chicago Tribune', 'TechRepublic', 'Haaretz', 'Western Journalism', 'CNET', 'Reuters via Yahoo! Finance', 'The Fiscal Times via Yahoo! Finance', 'Bloomberg', 'The Daily Star', 'TrustedReviews', 'WBAL Baltimore', 'The Register', 'Softpedia News', 'Markets Daily', 'WKRG News 5 Mobile', 'American Enterprise Institute', 'Economic Times', 'TASS', 'Politico', 'Athens Daily Review', 'Quartz via Yahoo! Finance', 'Yahoo Finance UK', 'BGR News via Yahoo! News', 'PYMNTS.com', 'Daily Post Nigeria', 'TechCrunch', 'The Big Lead', 'ABC News', 'ABC News', 'Livemint', 'Politico', 'YourWestValley.com', 'Bloomberg', 'Human Resources Online', 'ZDNet', 'American Thinker (blog)', 'Forbes', 'Daily Caller', 'NEWS.com.au', 'Reuters via Yahoo! Sports', 'Cambridge News', 'ACN Newswire via Yahoo!7 Finance', 'Washington Post', 'Economic Times', 'Daily Caller', 'The Hill', 'Boston.com', 'NBC 29 News', 'PBS NewsHour', 'Intifada Palestine', 'The ', 'The Guardian', 'Sydney Morning Herald', 'New York Times', 'Seeking Alpha', 'USA TODAY', 'Yahoo News', 'New York Magazine', 'The Sun', 'The Wall Street Journal', 'NPR', '89.3 KPCC', 'Esquire.com', '24/7 Wall St. via Yahoo! Finance', 'MSPoweruser.com', 'Daily Mail', 'WinBeta', 'Tasnim News Agency (press release)', 'Wall Street Journal (blog)', 'Quartz', 'Christian Science Monitor', 'Greek Reporter', 'VOA News', 'New York Times', 'Christian Science Monitor via Yahoo UK & Ireland News', 'gulfnews.com', 'Irish Times', 'The Guardian', 'BetaNews', 'The Hill (blog)', 'Bloomberg', 'ABC 7 Chicago', 'CNN', 'Politico', 'Forbes', 'Business Insider', 'Times of India', 'CQ Politics', 'TelegraphStandard.com (blog)', 'Newsmax', 'Business Insider', nan, 'Washington Post', 'Financial Times', 'CNBC', 'Ars Technica UK', 'Washington Post', 'EJ Insight', 'Daily Caller', 'The Australian', 'Voice of America (blog)', 'WinBeta', 'Patheos (blog)', 'MarketWatch', 'PoliticusUSA', 'Digital Trends via Yahoo! News', 'Bloomberg', 'WAFA - Palestine News Agency', 'Bloomberg', 'Reuters via Yahoo! Finance', 'Washington Post', 'Tyler Morning Telegraph', 'Sydney Morning Herald', 'News West 9 Midland', 'Softpedia News', 'WMPoweruser.com', 'International Business Times', 'ABC News', 'BGR News via Yahoo! News', 'The Japan News', 'ESPN Blogs', 'BDlive', 'Tulsa World', 'Business Wire via Yahoo! Finance India', 'AFP via Yahoo! News', 'NewsWay 21', 'ABC News', 'GeekWire', 'Neowin', 'VG247', 'ABC News', 'ITV News', 'Associated Press via Yahoo! India News', 'The Hill (blog)', 'The Times (subscription)', 'AlterNet', 'Reuters via Yahoo! Finance', 'Business Insider', 'Forbes', 'Reuters via Yahoo! Finance', 'Business Insider', 'Business Insider', 'HardwareZone', 'Hellenic Shipping News Worldwide', 'The National', 'Phone Arena', 'SBS', 'Daily Caller', 'Fortune', 'Nikkei Asian Review', 'BGR News via Yahoo! News', 'Washington Times', 'Times Record', 'Windows Central', 'The Detroit News', 'Associated Press via Yahoo! News', 'The Tennessean', 'Chicago Tribune', 'NewsBusters (blog)', 'Waste Management World', 'iProgrammer', 'Press TV', 'CNBC', 'SFGate', 'WinBeta', 'Intifada Palestine', 'Reuters via Yahoo Maktoob News', 'MacroBusiness (blog)', 'The Register', 'Daily Trojan Online', 'ABC News', 'RT', 'Jakarta Post', 'Economic Times', 'Channel NewsAsia', 'Maximum PC', 'Times of India', 'Berkshire Eagle (subscription)', 'Wall Street Journal', 'The Guardian', 'Fox Business', 'TIME', 'Wall Street Journal', 'American Enterprise Institute', 'AlterNet', 'thenews.pl', 'Los Angeles Times', 'Newschannel 6 Wichita Falls', 'ABC Online', 'The Wall Street Journal', 'BBC News', 'Fortune', 'Free Malaysia Today', 'ChristianToday', 'ARNnet', 'MSPoweruser.com', 'Voice of America', 'The Globe and Mail', 'Bloomberg', 'Quartz', 'STLtoday.com', 'Hellenic Shipping News Worldwide', 'The Times of Israel', 'Express.co.uk', 'Baltimore Sun', 'FOX Business', 'Associated Press via Yahoo! News', 'CBS News', 'Western Journalism', 'Daily Mail', 'Indiatimes.com', 'Associated Press via Yahoo UK & Ireland News', 'WinBeta', 'Daily Beast', 'GSMArena.com', 'Telegraph.co.uk', 'Tech2', 'SDTimes.com', 'Business Insider', 'Economic Times', "Tom's Hardware", 'CBC.ca', 'Softpedia News', 'AFP via Yahoo! News', 'Reuters', 'Economic Times', 'Reuters UK', 'The Times of Israel', 'South Bend Tribune', 'Hollywood Reporter', 'CNBC', 'Twitchy', 'algerie-focus.com', 'Chicago Sun-Times', 'KTRE', 'The Hill', 'New Straits Times via Yahoo! Singapore News', 'CNBC', 'AFP News via Yahoo! Philippines News', 'Fortune', 'Economic Times', 'Huffington Post', nan, 'Times of India', 'Reuters', 'Ahram Online', 'The Washington Times', 'TASS', 'Deutsche Welle', 'Raw Story', 'WAFA - Palestine News Agency', 'Bloomberg', 'Neowin', 'CBC via Yahoo Canada News', 'Bloomberg', 'Reuters Canada', 'Bloomberg', 'ZDNet', 'Business Insider', 'Hyperallergic', 'Reuters via Yahoo! Finance', 'The National Business Review', 'Yahoo News', 'Yahoo7 News', 'Los Angeles Times', 'Reuters UK', 'Eurogamer.net', 'Yahoo7 News', 'Columbia Daily Tribune', 'OneNewsNow', 'Wall Street Journal', 'Quad City Times', 'Washington Post', 'The Independent', 'WinBeta', 'Malta Independent Online', 'Observer', 'Voice of America', 'Yahoo Finance', 'BetaKit', 'Associated Press via Yahoo Maktoob News', 'Greenfield Daily Reporter', 'AAP via Yahoo! New Zealand Finance', 'PCWorld', 'Prensa Latina', 'Post Online', 'ForexLive', 'The Fresno Bee', 'The Indian Express', 'InfoWorld', 'AFP News via Yahoo! Singapore News', 'Polygon', 'Reuters UK', 'TPM', 'WAFA - Palestine News Agency', 'WinBeta', 'Business Insider', 'Business Insider via Yahoo! Finance', 'Manila Bulletin', 'The Inquirer', 'Autoweek', 'Independent Catholic News', 'Nikkei Asian Review', 'Columbus Business First', 'Politicsweb', 'Vanguard', 'The Register', 'Foreign Policy (blog)', 'WinBeta', 'The Express Tribune', 'CBC.ca', 'VentureBeat', 'New York Times', 'Florida Times-Union', 'CBS Baltimore', 'Long Beach Press Telegram', 'Liberal Democrat Voice', 'AFP via Yahoo! Finance', 'New York Times', 'Jerusalem Post Israel News', 'Reuters UK', 'The Local.ch', 'Mashable', 'Sporting News', 'Daily Caller', 'Seattle Times', 'Los Angeles Times', 'Reuters UK', 'CNET', 'The Times of Israel', 'TheStreet.com', 'PR Newswire via Yahoo! Finance', 'USA TODAY', 'Daily Caller', 'Wall Street Journal', 'The Union of Grass Valley', 'SiliconANGLE', 'Daily News & Analysis', 'Business Insider', 'Nasdaq', 'iClarified', 'RealClearPolitics', 'The Verge', 'BBC News', 'GhanaWeb', 'ABC News', 'WinBeta', 'Associated Press via Yahoo! Philippines News', 'CNNMoney', 'Al-Ahram Weekly', 'Daily Signal', 'ARNnet', 'TheBlaze.com', 'USA TODAY', 'USA TODAY', 'Channel NewsAsia', 'Daily Mail', 'U.S. News & World Report', 'AFP via Yahoo! News', 'Huffington Post', 'Christian Science Monitor via Yahoo UK & Ireland News', 'Belfast Telegraph', 'Mediaite', 'Korea Times', 'CNBC', 'American Thinker (blog)', 'Middle East Eye', 'ANI via Yahoo! India News', 'Business Insider via Yahoo! Finance', 'Charlotte Observer', 'Reuters via Yahoo UK & Ireland Finance', 'U.S. News & World Report', 'PC World', 'Fox News', 'New York Times', 'Tech Insider', 'The Onion (satire)', 'FXStreet', 'HardwareZone', 'Daily Mail', 'Daily Mail', 'Democracy Now!', 'Athens Daily Review', 'Channel NewsAsia', 'Newsmax', 'The Hindu', 'Business Wire via Yahoo! Finance', 'International Business Times via Yahoo UK & Ireland News', 'The New Yorker', 'Whitehouse.gov (press release)', 'Sputnik International', 'CNBC', 'The Guardian', 'DNA India', 'USA TODAY', 'Sputnik International', 'Marketwired via Yahoo UK & Ireland Finance', 'Telegraph.co.uk', 'Bloomberg', 'Zacks via Yahoo! Finance', 'CNN Money', 'The Canadian Press via Yahoo Canada News', 'AlterNet', 'Forbes', 'Business Insider', 'WinBeta', 'NPR', 'MSNBC', 'Mississauga News', 'Bloomberg View', 'Economic Times', 'The Verge via Yahoo! News', 'Zacks via Yahoo! New Zealand Finance', 'IGN', 'Sputnik International', 'ThaiVisa News', 'Consequence of Sound (blog)', 'Microsoft - Channel 9', 'Forbes', 'Ars Technica', 'Times Higher Education (THE)', 'KTVN Reno', 'WinBeta', 'Jakarta Post', 'PBS NewsHour', 'Sydney Morning Herald', 'EurActiv', 'CBS News', 'WAFA - Palestine News Agency', 'Reuters UK', 'Associated Press via Yahoo! News', 'CNBC', 'WJXT Jacksonville', 'Reuters via Yahoo! News', 'London South East (registration) (blog)', 'WinBeta', 'Fortune', 'Reuters via Yahoo! News', 'euronews', 'CBC.ca', 'KTLA', 'MSPoweruser.com', 'Hot Air', 'Mother Jones', 'International Business Times via Yahoo UK & Ireland News', 'Kelowna Capital News', 'Western Journalism', 'Twitchy', 'Jerusalem Post Israel News', 'The State Journal-Register', 'PBS NewsHour', 'Business Insider via Yahoo! Finance', 'Digital Trends', 'Benzinga', 'Bloomberg', 'Benzinga via Yahoo! Finance', 'Google (press release)', 'Trinidad Guardian', 'The Business Times Singapore', 'Economic Times', 'Seeking Alpha', 'The Guardian', 'The Guardian', 'New York Daily News', 'New York Post', 'Press TV', 'seattlepi.com', 'Marketplace.org', 'Economic Times', 'The Indian Express', 'The Christian Science Monitor', "Oumma.com: point de vue musulman sur l'actualité", 'Leicester Mercury', 'Wall Street Journal', 'ABC News', 'International Business Times via Yahoo UK & Ireland News', 'PCWorld', 'The Hindu', 'Motley Fool', 'Financial Times', 'Thurrott.com (blog)', 'Herald Scotland', 'Vox', 'Denver Post', 'ZNBC', 'Haaretz', 'E! Online', 'The Globe and Mail (subscription)', 'PerezHilton.com', 'The Charleston Gazette', 'BetaNews', 'Beckley Register-Herald', 'Wall Street Journal', 'Know Your Mobile', 'MSPoweruser.com', 'The Spokesman-Review', 'Forbes', 'Toronto Star', 'Los Angeles Times', "Barron's", 'Nasdaq', 'Zimbabwe Independent', 'The Canadian Press via Yahoo Canada News', 'Reuters', 'Neurogadget', 'AllAfrica.com', 'Business Insider via Yahoo! Finance', 'TheStreet.com', 'Midlothian Exchange', 'The Guardian', 'Voice of America', 'The Verge', 'AOL News', 'Forbes', 'American Thinker', 'International Business Times', 'Business Insider via Yahoo Canada Finance', 'Middle East Monitor', 'Tech2', 'Herald Scotland', 'Commercial Property Executive', 'International Business Times UK', 'AllAfrica.com', 'MarketWatch', 'Daily Beast', 'ANSAmed', 'WXXI News', 'Yahoo News', 'WREX-TV', 'The Grio', "Crain's Detroit Business", 'STLtoday.com', 'CNSNews.com', 'Center for Research on Globalization', 'Accuracy In Media', 'InfoWorld', 'The Age', 'ComputerWeekly.com', 'Firstpost', 'Times of Malta', 'PBS NewsHour', 'Daiji World', 'Telegraph.co.uk', 'Gospel Herald', 'TWC News', 'Associated Press via Yahoo! News', 'Russia Beyond the Headlines', 'MIS Asia', 'Hawaii News Now', 'Bloomberg', 'Business Insider', 'El Watan', 'Zacks via Yahoo! Finance', 'Business Insider', 'GeekWire', 'Sputnik International', nan, 'Los Angeles Times', 'The Guardian', 'Reuters', 'Business Standard', 'Washington Post', 'Jezebel', 'Softonic EN (blog)', 'CNN', 'Sputnik International', 'Alaska Dispatch News', 'Reuters UK', 'Engadget', 'RTÉ News', 'Chicago Tribune', 'Washington Times', 'Progress Illinois', 'AFP via Yahoo! New Zealand News', 'CNET UK', 'Daily Mail', 'Washington Times', 'Market Watch', 'Free Malaysia Today', 'Livemint', 'The Indian Express', 'The Hill (blog)', 'Times of India', 'Hellenic Shipping News Worldwide', 'ABC Online', 'VentureBeat', 'BBC News', 'Forbes', 'Environmental Leader', 'Reuters via Yahoo! News', 'The Guardian', 'The Fiscal Times', 'Reuters', 'Washington Times', 'New York Times', 'Stuff.co.nz', 'The Japan News', 'Computerworld', 'AFP via Yahoo UK & Ireland Finance', 'USA TODAY', 'AFP via Yahoo! News', 'Minneapolis Star Tribune', 'China Daily', 'Washington Times', 'The Washington Times', 'The Star Online', 'teleSUR English', 'New Kerala', 'New York Daily News', 'AFP via Yahoo! India News', 'Sky News Australia', 'PRWeb', 'Reuters UK', 'Slashdot', 'Market Realist via Yahoo! Finance India', 'Digital Trends via Yahoo! News', 'The Atlantic', 'Associated Press via Yahoo! Philippines Sports', 'Madison.com', 'Belfast Telegraph', 'Digital Trends', 'Bloomberg', 'Khaleej Times', 'WMPoweruser.com', 'The Guardian', 'The Globe and Mail (subscription)', 'Reuters via Yahoo! Sports', 'The Indian Express via Yahoo! India News', 'Stuff', 'gamesindustry.biz', 'New Statesman', 'InformationWeek', 'Market Watch', 'Breitbart News', 'TheBlaze.com', 'Business Standard', 'AlterNet', 'MacroBusiness (blog)', 'Reuters via Yahoo! Finance', 'Sporting Life', 'Kathimerini', 'NPR', 'Wonkette (satire) (blog)', 'BizPac Review', 'The Globe and Mail (subscription)', 'Profit Confidential', 'SFGate', 'New York Times', 'MacroBusiness (blog)', 'CNBC', 'Focus Taiwan News Channel', 'Yahoo Finance', 'Naked Security', 'Yeshiva World News', 'Lehigh Valley Business', 'Fox News Insider', 'Fast Company', 'Business Insider', 'AFP News via Yahoo! Philippines News', 'Yahoo7 News', 'Naharnet', 'Express.co.uk', 'Wall Street Journal', 'KSLA-TV', 'The Wall Street Journal', 'Washington Times', 'TheBlaze.com', 'WND.com', 'Fortune', 'Domain News', 'RollingStone.com', 'Washington Examiner', 'Al-Bawaba', 'Reuters via Yahoo! News', 'Seattle Times', 'Politico', 'Jakarta Post', 'Chicago Tribune', 'Android Community', 'Neowin', 'WSLS', 'The Verge', 'Motley Fool', 'The Next Web', 'Lifehacker Australia', 'The Wall Street Journal', 'Fortune', 'Brandon Sun', 'Redmond Channel Partner', 'Daily Mail', 'Motley Fool', 'PCWorld', 'Politico', 'WMPoweruser.com', 'Ahram Online', 'Reuters', 'Yahoo News', 'Bloomberg View', 'TODAYonline', 'Digital Trends via Yahoo! News', 'Arab American News', 'Firstcoastnews.com', 'Reuters - UK Focus via Yahoo UK & Ireland Finance', 'The Punch', 'Intifada Palestine', 'The Atlantic', 'Bloomberg', 'The Hill', 'Press Herald', 'Financial Times', 'TheBlaze.com', 'CNET', 'Hindustan Times', 'The Local.se', 'The National Interest Online', 'Twitchy', 'WKRG News 5 Mobile', 'CNN', 'KOB.com', 'Reuters', 'Hot Air', 'Seeking Alpha', 'GameSpot', 'NPR', 'The Guardian', 'Digital Trends', 'CNBC', 'The White House (blog)', 'RadioFreeEurope/RadioLiberty', 'Daily News & Analysis', 'The Wall Street Journal', 'WDSU New Orleans', 'ArabianBusiness.com', 'Digital Trends', 'KAUZ-TV', 'Christian Science Monitor via Yahoo UK & Ireland News', 'KTRE Lufkin and Nacogdoches', 'ABC Online', 'AFP via Yahoo! New Zealand News', 'American Enterprise Institute', 'Business Insider', 'Tyler Morning Telegraph', 'WCVB Boston', 'Press Herald', 'Financial Times', 'Business News Americas', 'The Cubic Lane', 'The Nation', 'Softpedia News', 'CBC.ca', 'Wall Street Journal', 'Financial Times', 'Aljazeera.com', 'CNBC', 'Business Insider via Yahoo! Finance', 'Washington Times', 'The Wall Street Journal', 'U.S.News & World Report via Yahoo! News', 'Deutsche Welle', 'Seattle Times', 'Daily Mail', 'Vanguard', 'Jerusalem Center for Public Affairs', 'The Christian Science Monitor', 'Engadget', 'VG247', 'Thurrott.com (blog)', 'Seeking Alpha', 'Emirates 24|7', 'Western Journalism', 'snopes.com', 'Newsweek', 'Reuters', 'Engadget', 'Windows Report', 'BusinessTech', 'Huffington Post', 'AAP via Yahoo!7 Finance', '14 News WFIE Evansville', 'The Globe and Mail (subscription)', 'Firstpost', 'ABC News', 'Datamation', 'Bloomberg', 'CNN', 'Town Hall', 'Gulf Digital News', 'DEBKA file', 'Bloomberg', 'PR Newswire', 'Bloomberg', 'Palestine Herald Press', 'The Verge', 'The Canadian Press via Yahoo Canada News', 'Reuters Africa', 'Chicago Tribune', 'Washington Times', 'Business Insider', 'The Temple News', 'New York Post', 'The Globe and Mail', 'www.worldbulletin.net', 'The Tech Portal', 'The Verge', 'CNBC via Yahoo! Finance', 'Reuters Canada', 'Fresno Bee', 'ZDNet', 'Entertainment Weekly (blog)', 'Bitcoinist.net', 'VentureBeat', 'New Europe', 'WAFA - Palestine News Agency', 'Fairfield Daily Republic', 'Blic', 'TWCN Tech News (blog)', 'Reuters', 'The Sydney Morning Herald', 'The Moscow Times (registration)', 'Palestine Herald Press', 'Digital Trends via Yahoo UK & Ireland News', 'New York Times', 'The Federalist', 'Huffington Post', 'PR Newswire (press release)', 'UPROXX via Yahoo! News', 'Bankrate.com via Yahoo! Finance', 'Quartz', 'Newsmax', 'MSPoweruser.com', 'The Hill', 'Washington Post', 'AFP Relax News via Yahoo! News', 'Business Recorder (press release) (registration) (blog)', 'Christian Science Monitor', 'CNBC via Yahoo! Finance', 'Channel NewsAsia', 'The Hill (blog)', 'www.worldbulletin.net', 'Telegraph.co.uk', 'AFP via Yahoo! News', 'Bangkok Post', 'The Economist (blog)', 'TODAYonline', 'ENPI Info Centre', 'Reuters via Yahoo! Finance', 'CounterPunch', 'NBC4 Washington', 'The Verge', 'Haaretz', 'Richmond Times-Dispatch', 'The Gainesville Times', 'BBC News', 'Associated Press via Yahoo! News', 'The ', 'Bloomberg', 'BGR News via Yahoo! News', 'CRN - UK', 'AllAfrica.com', 'NBCNews.com', 'Business Insider', 'AFP Relax News via Yahoo! News', 'Wichita Eagle', 'The Huffington Post', 'Trade Arabia', 'U.S. News & World Report', 'Manila Bulletin', 'PR Newswire via Yahoo! Finance', 'Phone Arena', 'The White House (blog)', 'The Guardian', 'The Hill', 'ITV News', 'Contra Costa Times', 'Focus Taiwan News Channel', 'Mail & Guardian Online', 'ABC6OnYourSide.com', 'The Hill', 'Al Jazeera via Yahoo Maktoob News', 'MarketWatch', 'Computerworld', 'PR Newswire via Yahoo! Finance', 'Waterloo Record', 'KVUE.com', 'The Inquisitr', 'Fox News', 'PolitiFact', 'Business Insider', 'Associated Press via Yahoo! Singapore Sports', 'Ahlul Bayt News Agency (press release)', 'FierceCIO', 'Daily Mail', 'New York Post', 'Business Insider', 'AllAfrica.com', 'Deutsche Welle', 'The Statesman', 'Press TV', 'MassLive.com', 'Business Insider', 'Yahoo News', 'Thurrott.com (blog)', 'JOC.com', 'The Indian Express via Yahoo! India News', 'Sydney Morning Herald', 'Arutz Sheva', 'Toronto Star', 'KFOX El Paso', 'Phone Arena', 'TeenVogue.com', 'BreakingNews.ie', 'BET', 'Los Angeles Times', 'Dallas Business Journal', 'BlackNews.com', 'SiliconBeat', 'Politico', 'Greek Reporter', 'Bangor Daily News', 'Economic Times', 'Fraser Coast Chronicle', 'NAIJ.COM', 'Zawya (registration)', 'euronews', 'Reuters via Yahoo! Finance', 'TechRadar', 'CBC.ca', 'Quincy Herald-Whig', 'CNET', 'USA TODAY', 'GW Today', 'DailyPost Nigeria', 'TechRadar', 'Canada Free Press', 'BDlive', 'Himalayan Times', 'CNN International', 'ESPN', 'Town Hall', 'Business Recorder', 'Financial Express', 'Fox News', 'Reuters via Yahoo Canada News', 'Wall Street Journal', 'CNN', 'Headlines & Global News', 'The Interpreter', 'Nasdaq', 'NEWS.com.au', 'Daily Mail', 'Palestine Herald Press', 'AutoGuide.com', 'Toronto Star', 'Wall Street Journal (blog)', 'This is Money', 'CNBC', 'Reuters via Yahoo! News', 'Telegraph.co.uk', 'Sputnik International', 'Washington Post', 'Phys.Org', 'WRAL.com', 'CNN', 'Reuters via Yahoo! Finance', 'FXStreet', 'USA TODAY', 'Bloomberg', 'AllAfrica.com', 'Reuters via Yahoo UK & Ireland News', 'WinBeta', 'The Hindu', 'WILX-TV', 'Jerusalem Post Israel News', 'The Canadian Press via Yahoo Canada News', 'Inquirer.net', 'NewsBusters (blog)', 'GreenBiz', 'Jobs & Hire', 'The Verge via Yahoo Canada News', 'Ubergizmo', 'Palestine Herald Press', 'Alphr', 'DestinyMan', 'USA TODAY', 'Nasdaq', 'Al Jazeera via Yahoo UK & Ireland News', 'Light Reading', 'WKYT', 'Reuters via Yahoo! News', 'RushLimbaugh.com', 'Nasdaq', 'TheBlaze.com', 'Yahoo News', 'The Press', 'TechRepublic', 'gulfnews.com', 'TechRadar', 'San Antonio Express-News', 'CNN Money', 'The Canadian Press via Yahoo Canada Sports', 'AllAfrica.com', 'The Fayetteville Observer', 'ForexLive', 'Business Insider', 'MetroNews Canada', 'Business Insider Australia', 'Gamasutra', 'Arab News', 'Associated Press via Yahoo! Singapore Sports', 'Bloomberg', 'fox6now.com', 'MENAFN', 'PR Newswire', 'Fox News', 'New York Times', 'CityNews', 'New York Times', 'Slate Magazine', 'Twitchy', 'International Middle East Media Center', 'Destination CRM', 'BBC News', 'Broadcasting & Cable', 'GeekWire', 'Right Wing Watch', 'Reuters UK', 'Bloomberg via Yahoo! Finance', 'KLTV 7 Tyler', 'The Register', 'Neowin', 'Reuters', 'Bloomberg', 'Express.co.uk', 'Kathmandu Post', 'GSMArena.com', 'WinBeta', 'V3.co.uk', 'Peeblesshire News', 'Business Insider', 'Bangkok Post', 'Politico', 'New York Times', 'Associated Press via Yahoo! Finance India', 'Slate Magazine (blog)', 'Nikkei Asian Review', 'Eyewitness News', 'Reuters', 'Nasdaq', 'Nikkei Asian Review', 'The Star Online', 'AFP via Yahoo! News', 'Town Hall', 'The Review', 'Online Athens', 'MakeUseOf', 'The-review', 'Yahoo7 Finance via Yahoo!7 Finance', 'SitePoint', 'Reuters', 'WPVI 6abc Philadelphia', 'Gallup', 'Associated Press via Yahoo! New Zealand Finance', 'Washington Post', 'NPR', 'Daily Signal', 'CRN', 'CNSNews.com', 'Strategy Page', 'TheStreet.com', 'CNN', 'International Business Times UK', 'Hickory Daily Record', 'Marketwired via Yahoo! Finance', 'The Fiscal Times', 'Hot Air', 'ZDNet', 'Reuters Canada', 'legal Insurrection (blog)', 'PBS NewsHour', 'New York Post', 'Daily Telegraph', 'The National Enquirer', 'San Jose Mercury News', 'The Atlantic', 'AllAfrica.com', 'DNA India', 'CNN International', 'PJ Media', 'Huffington Post', 'Foreign Policy Journal', 'The Times (subscription)', 'Reuters via Yahoo! Finance', 'The Canton Repository', 'Haaretz', 'SaharaReporters.com', 'Yahoo7 Finance via Yahoo!7 Finance', 'Opposing Views', 'The MetroWest Daily News', 'Financial Times', 'Herald Sun', 'MarketWatch', 'Channel NewsAsia', 'Khaleej Times', 'The Wall Street Journal', 'Thomson Reuters Foundation', 'Red Flag', 'USA TODAY', 'WinBeta', 'Western Journalism', 'Reuters via Yahoo Maktoob News', 'Autoblog (blog)', 'Sin Chew Jit Poh', 'KABC-TV', 'TechCrunch', 'TIME', 'Bangor Daily News', 'Irish Times', 'South China Morning Post (subscription)', 'USA TODAY', 'Plastics and Rubber Weekly', 'Dreuz Info', 'USA TODAY High School Sports', 'Glens Falls Post-Star', 'Reuters via Yahoo Canada News', 'Reuters UK', 'Canada.com', 'Washington Times', 'Diginomica', 'NDTV', 'International Business Times', 'Washington Post (blog)', 'Lexology (registration)', 'VOA News', 'Inquirer', 'International Business Times UK', 'InvestCorrectly', 'Vanguard', 'Middle East Eye', 'CounterPunch', 'Daily Mail', 'AFP via Yahoo Maktoob News', 'CBC via Yahoo Canada News', 'Daily Caller', 'CNET', 'ABC News', 'Calgary Herald', 'Vanguard', 'International Business Times AU', 'Algemeiner', 'TheBlaze.com', 'Reuters via Yahoo Canada News', 'Thurrott.com (blog)', 'Politico', 'Economic Times', 'ABC News', 'Neowin', 'AFP via Yahoo!7 News', 'International Business Times', 'The Fiscal Times', 'VentureBeat', 'Reuters', 'Reuters', 'Hack Read', 'AFP via Yahoo UK & Ireland News', 'Boston Herald', 'CNBC', 'Seeking Alpha', 'Business Mirror', 'U.S.News & World Report via Yahoo! News', 'Gawker', 'Sputnik International', 'Bangkok Post', 'TechCrunch', 'Deutsche Welle', 'InfoQ.com', 'Forward', 'The Hill', 'PoliticusUSA', 'Washington Post', 'The Hill (blog)', 'Bangor Daily News', 'Newsmax', 'Sydney Morning Herald', 'Redmond Channel Partner', 'The Local.it', 'Wall Street Journal (blog)', 'Vanguard', 'Wall Street Journal', 'AFP via Yahoo! India News', 'Western Journalism', 'The Washington Times', 'Washington Times', 'Washington Post (blog)', 'For The Win', 'Honestreporting.com', 'Stuff.co.nz', 'MSPoweruser.com', 'The Herald', 'WMCTV Memphis', 'Bloomberg', 'Forbes', 'Warsaw Business Journal', 'Economic Times', 'Softpedia News', 'CNNMoney', 'Economic Times', 'ChristianToday', 'Scoop.co.nz (press release)', 'AFP via Yahoo! News', 'Tri-City Herald', 'Vox', 'Benzinga', 'Hurriyet Daily News', 'The Times of Israel', 'The Southern', 'Reuters', 'The Coldwater Daily Reporter', 'Reuters via Yahoo Canada News', 'Scotsman', 'NPR', 'WinBeta', 'Sky News via Yahoo UK & Ireland Finance', 'CNN Money', 'WinBeta', 'The Forward', 'WND.com', 'The Root', 'Reuters UK', 'Daily Beast', 'Western Journalism', 'CBC via Yahoo Canada News', 'American Thinker', 'RTE.ie', 'PR Newswire (press release)', 'Breitbart News', 'Associated Press via Yahoo! Finance', 'Neowin', 'MSPoweruser.com', 'Fox News', 'CNN International', 'Daily Caller', 'The Washington Times', 'Voice of America', 'CNN International', 'Business Wire (press release)', 'Yahoo News', 'Gulf Times', 'ForexLive', 'Excalibur Online', 'Eyewitness News', 'Morocco World News', 'Wall Street Journal', 'YES! Magazine', 'CNN', 'The New Zealand Herald', 'KLTV', 'Naked Security', 'KCCI 8 Des Moines', 'TheStreet.com', 'The Wall Street Journal', 'WAFA - Palestine News Agency', 'Channel NewsAsia', 'Redmond Channel Partner', 'Fortune', 'Reuters', 'Daily Caller', 'WAFA - Palestine News Agency', 'Financial Times', 'NewsBusters (blog)', 'Palestine Herald Press', 'Business Insider Australia', 'The Fiscal Times', 'Bleacher Report', 'Intifada Palestine', 'CNN', 'Bloomberg', 'CNSNews.com (blog)', 'Reuters', 'The Auto Channel', 'Daily Mail', 'Minneapolis Star Tribune', 'Las Cruces Sun-News', 'New York Times', 'Miami Herald', 'RT', 'The Register', 'FT.com (registration) (blog)', 'Reuters via Yahoo! Finance', 'The Denver Post', 'Financial Times', 'New Zealand Herald', 'Big Think (blog)', 'East Coast Radio', 'Engadget', 'Phone Arena', 'Windows Central', 'Channel NewsAsia', 'Watchdog.org', 'Waltonian', 'CNET', 'Denver Business Journal (blog)', 'Washington Times', 'Express.co.uk', 'Business Insider', 'Computerworld', 'Yahoo Finance', 'Miami Herald', 'Business Green', 'NorthJersey.com', 'Detroit Free Press', 'Chicago Tribune', 'GlobeNewswire (press release)', 'fox4kc.com', 'East Oregonian (subscription)', 'Breitbart News', 'Bloomberg', 'Politicsweb', 'Fortune', 'Lifehacker Australia', 'PC World', 'Salem-News.Com', 'Reuters', 'Clapway', 'InfoWorld', 'The Indian Express', 'Wall Street Journal (blog)', 'KING5.com', 'Forbes', 'Anadolu Agency', 'RenewEconomy', 'CNN', 'New York Times', 'TheBlaze.com', 'Reuters', 'IBNLive', 'CBC.ca', 'WYTV', 'Business Insider via Yahoo! Finance', 'WinBeta', 'ZDNet', 'RenewEconomy', 'Yahoo Finance', 'FactCheck.org', 'Financial Times', 'The Independent', 'Financial Times', 'GhanaWeb', 'Metro', 'Tulsa World', 'The National Interest Online (blog)', 'Intifada Palestine', 'Daily Telegraph', 'Daily Caller', 'Financial Times', 'POPSUGAR', 'South China Morning Post', 'WAFA - Palestine News Agency', 'Daily Caller', 'Computer World Australia', 'Reuters via Yahoo! Finance', 'Tehran Times', 'Forbes', 'ZDNet', 'Daily News & Analysis', 'NewsWest9.com', 'NBCNews.com', 'AFP via Yahoo! News', 'Digital Trends', 'Singapore Business Review via Yahoo! Finance', 'Washington Post', 'The Nation', 'Outlook India', 'Raw Story', 'MSPoweruser.com', 'The Japan Times', 'FierceMobileIT', 'Economic Times', 'Wall Street Journal', 'Chicago Sun-Times', 'Washington Post', 'WMPoweruser.com', 'Bloomberg', 'CBC.ca', 'Philippine Star', 'Novinite.com', 'FXStreet', 'ABC News', 'Destructoid', 'The Punch', nan, 'Financial Times', 'Yahoo Tech', 'MIS Asia', 'The Spokesman-Review', nan, 'Wall Street Journal', 'CBS Local', 'Reuters', 'South China Morning Post', 'Business Wire (press release)', 'Fox News', "Talkin' Cloud", 'The Independent', 'WinBeta', 'NewsOK.com', 'Bloomberg', 'Yahoo Finance', 'Chicago Tribune', 'Hot Air', 'CNN', 'Business Insider', 'Jadaliyya', 'ABC News', 'Gulf Times', 'ITBusiness.ca', 'Nasdaq', 'The Advocate', 'National Review Online', 'AllAfrica.com', 'Daily Caller', 'ZDNet', 'Android Headlines - Android News', 'PlanetSave.com', 'Shropshire Star', 'WebProNews', 'Business Insider', 'The Gazette: Eastern Iowa Breaking News and Headlines', 'Greenfield Daily Reporter', 'The Intercept', 'StreetInsider.com', 'POLITICO.eu', 'International Business Times', 'MSPoweruser.com', 'New York Times', 'ITV News', 'Haaretz', 'Yellowhammer News', 'Buffalo News', 'Sputnik International', 'Los Angeles Times', 'The Grio', 'CBC.ca', 'Manila Bulletin', 'Minneapolis Star Tribune', 'New York Times', 'Edmonton Journal', 'ABC News', 'Softpedia News', 'CNN', 'NEWS.com.au', 'VentureBeat', 'Dallas Morning News', 'The Denver Post', 'AFP via Yahoo! News', 'Stuff', 'Washington Post', 'Channelnomics EU (registration)', 'Reuters via Yahoo! Finance', 'New York Post', 'Le Figaro', 'Tech Times', 'China Daily', 'Premium Times', 'Daily Mail', 'The News-Press', 'ABC News', nan, 'Reuters UK', 'Patch.com', 'New Zealand Herald', 'International Business Times via Yahoo UK & Ireland News', 'The Irish Times', 'Heavy.com', 'Workers World', 'Bloomberg', 'Reuters', '9news.com.au', 'The Verge via Yahoo! News', 'Palestine News Network', 'Ecumenical News', 'MarketWatch', 'Daily Mail', 'Radio Free Asia', 'New York Times', 'NPR', 'Business Standard', 'International Middle East Media Center', 'Forbes', 'The Christian Science Monitor', 'Sydney Morning Herald', 'The Detroit News', 'CNN', 'Economic Times', 'The Hill', 'InsideClimate News', 'Network World', 'Journal Online', 'The Straits Times', 'Forbes', 'New York Times', 'TheBlaze.com', 'Alaska Dispatch News', 'ABC News', 'USA TODAY', 'PYMNTS.com', 'Mediaite', 'OregonLive.com', 'New Europe', 'The Australian', 'Automotive News', 'CNN Money', 'Washingtonian.com', 'Forbes', 'Nasdaq', 'Eurasia Review', 'Huffington Post', 'AllAfrica.com', 'ZDNet', 'New York Times', 'The Independent', 'MarketWatch', 'Economic Times (blog)', 'CIO', 'Economic Times', 'Engadget', 'The Globe and Mail', 'NJ.com', 'Business Wire via Yahoo! Finance India', 'Fast Company', 'AFP via Yahoo! India News', 'Calgary Sun', 'Digital Trends via Yahoo! News', 'The Daily Advertiser', 'vtdigger.org', 'Richmond Times-Dispatch', 'Digital Trends via Yahoo! News', 'Associated Press via Yahoo! News', 'Bloomberg', 'Fortune', 'Reuters', 'PC World', 'Phys.Org', 'InfoQ.com', 'MarketWatch', 'Los Angeles Times', 'Reuters via Yahoo! News', 'GeekWire', 'ABC News', 'Motley Fool', 'Softpedia News', 'Yahoo News', 'Times of India', 'Gizmodo', 'CILISOS.MY', 'WGAL 8 Susquehanna Valley', 'GeekWire', 'Techworm', 'SlashGear', 'The Tennessean', 'CNN', 'The Guardian', 'AFP via Yahoo! News', 'FrontPage Magazine', 'Richmond Times-Dispatch', "Investor's Business Daily", 'Marine Corps Times', 'Washington Examiner', 'NDTV', 'Forbes', 'The Nation - Thailand's English news', 'Channel Insider', 'Digital Trends via Yahoo Canada News', 'cleveland.com', 'The Coloradoan', 'Irish Independent', 'Reuters via Yahoo! Finance', 'Nasdaq', 'Hindustan Times', 'Quartz', 'NewsInferno', 'NBC NEWS', 'Market Watch', 'Digital Trends via Yahoo! Finance', 'News West 9 Midland', 'rediff.com', 'The National', 'Information Age', 'CNN Money', 'Sydney Morning Herald', 'ENPI Info Centre', 'Inquirer', 'NDTV', 'Nikkei Asian Review', 'Reuters Africa', 'The Hill (blog)', 'Thurrott.com (blog)', 'ITV News', 'Voice of America', 'News & Observer', 'Chip Chick', 'Washington Post', 'Albuquerque Journal', 'Latin Post', 'Washington Post', 'MarketWatch', 'fox2now.com', 'Financial Post', 'Puget Sound Business Journal (Seattle)', 'Deutsche Welle', 'The Washington Times', 'ABC News', 'Forbes', 'CNBC', 'GeekWire', 'International Business Times', 'Sydney Morning Herald', 'NME', 'New York Times', 'Christian News Network', 'Fast Company', 'ABC News', 'Huffington Post', 'WSFA 12 Montgomery', 'Honolulu Civil Beat', 'Reuters', 'The Age', 'The Straits Times', 'AFP via Yahoo!7 Finance', 'Bloomberg', 'Orlando Sentinel', 'Reuters via Yahoo! News', 'AFP via Yahoo! India News', 'The Hilltop News', 'BBC News', 'People Magazine', 'Breitbart News', 'The Huffington Post', 'BBC News', 'The Indianapolis Star', 'CNET', 'AFP via Yahoo! India News', 'The Diplomat', 'CBC.ca', 'The Week UK', 'Denver Post', 'Chicago Tribune', 'Zero Hedge', 'Channel3000.com - WISC-TV3', 'Detroit Free Press', 'Health Affairs (blog)', 'Al-Monitor', 'Economic Times', 'Lifehacker Australia', 'SC Magazine UK', 'Computer World Australia', 'Disability Scoop', 'Intifada Palestine', 'The Verge', 'CBS Local', 'Deadline', 'Digital Trends', 'Business Insider', 'RTE News', 'The Australian', 'Los Angeles Times', 'The Globe and Mail (subscription)', 'AFP News via Yahoo! Philippines News', 'The Fresno Bee', 'Mediaite', 'Dallas Morning News', 'The Hill (blog)', 'Haaretz', 'Digital Trends via Yahoo Canada News', 'RadioFreeEurope/RadioLiberty', 'WBT', 'AAP via Yahoo! New Zealand Finance', 'CNNMoney', 'Digital Trends via Yahoo! Sports', 'Entrepreneur', 'Quartz', 'Morning Journal News', 'shropshirestar.com', 'Tampabay.com', 'Pocket-lint.com', '11alive.com', 'The Christian Post', 'Globalnews.ca', 'Palestine Herald Press', 'News West 9 Midland', '24/7 Wall St. via Yahoo! Finance', 'Reuters', 'Thomson Reuters Foundation', 'WOODTV.com', 'Reuters', 'Slate Magazine (blog)', 'Auburn Citizen', 'Reuters via Yahoo! News', 'Economic Times', 'Politico', 'UN News Centre', 'Washington Post', 'Calgary Herald', 'Reuters UK', 'Wall Street Journal', 'Philippine Star', 'Marketwired via Yahoo! Finance', 'GlobeNewswire via Yahoo! Finance', 'The Register', 'Al-Monitor', 'Al Jazeera via Yahoo UK & Ireland News', 'Washington Times', 'WIRED', 'Fortune', 'Express.co.uk', 'Associated Press via Yahoo! News', 'Daily Mail', 'The Sun Daily', 'Vanguard', 'Thurrott.com (blog)', 'The Boston Globe', 'Forbes', '9news.com.au', 'New Kerala', 'Daily Mail', 'The Hill', 'Tech Times', 'Washington Post', 'AFP via Yahoo! News', 'WinBeta', nan, 'Computer Dealer News', 'The ', 'Bloomberg', 'Reuters via Yahoo Canada News', 'PR Newswire (press release)', 'Computer World Australia', 'The Times of India', 'CBS Local', 'ABC Online', 'Vineyard Gazette', 'Art Newspaper', 'Yahoo Singapore on Tumblr via Yahoo! Singapore News', 'Manila Bulletin', 'The Daily Star', 'The Guardian', 'Calgary Herald', 'Sydney Morning Herald', 'VOA News', "Barron's (blog)", 'Reuters', 'Lifehacker Australia', 'The Guardian', 'BILD', 'Washington Post', 'Fortune', 'USA TODAY', 'Nearshore Americas', 'The Globe and Mail', 'ZDNet', 'Yahoo News', 'iSchoolGuide', 'Breitbart News', 'Nottingham Post', 'Arab News', 'Hurriyet Daily News', 'New Zealand Herald', 'USA TODAY', 'Computerworld', 'MSPoweruser.com', 'The Verge', 'The Star', 'Business Insider', 'Egypt Independent', 'Intifada Palestine', 'Fox News', 'Watchdog.org', 'Ars Technica', 'Brisbane Times', 'The Week UK', 'The Globe and Mail', 'KLTV 7 Tyler', 'CNN Money', 'Financial Times', 'ETCIO.com', 'Intifada Palestine', 'The Guardian', 'Frome Standard', 'Irish Times', 'Irish Independent', 'The Australian Financial Review', 'GlobeNewswire via Yahoo! Finance', 'BuzzFeed News', 'Ecumenical News', 'Irish Times', 'TheBlaze.com', 'Zacks via Yahoo! Finance', 'AllAfrica.com', 'Business Insider', 'Alaska Dispatch News', 'Independent Tribune', 'PoliticusUSA', 'Huffington Post', 'Press Association via Yahoo UK & Ireland News', 'UN News Centre', 'Stuff', 'Bearing Arms', 'The Wall Street Journal', 'Philippine Star', 'Daily Caller', 'Nikkei Asian Review', 'The Whistler', 'IGN', 'Investorplace.com', 'Reuters via Yahoo! Sports', 'Al-Monitor', 'Reuters', 'Western Journalism', 'Al-Bawaba', 'The Daily Star', 'CNSNews.com', 'Seeking Alpha', 'Popular Mechanics', 'Financial Post', 'NDTV', 'Huffington Post', 'Bloomberg', 'TheSportsCampus.com', 'RealClearPolitics', 'Manila Bulletin', 'Economic Times', 'Reuters', 'American Thinker', 'International Business Times', 'THE BUSINESS TIMES', 'Brandon Sun', 'Daily Beast', 'CNN Money', 'The Fiscal Times via Yahoo!7 Finance', 'eWeek', 'MIS Asia', 'ForexLive', 'Softpedia News', 'Huffington Post', 'Palatinate', 'Fortune', 'Novinite.com', 'Financial Post', 'Redmondmag.com (blog)', 'The Jewish Press', 'Mediaite', 'WinBeta', 'AFP via Yahoo! India News', 'CBS News', 'RealClearPolitics', 'New Kerala', 'CNN', 'Reuters', 'PC Magazine', 'BBC News', 'Bloomberg', 'Associated Press via Yahoo! Finance', 'Huddersfield Daily Examiner', 'Charisma News', 'Market Realist via Yahoo! Finance', 'Reuters UK', 'Macleans.ca', nan, 'AFP via Yahoo! India News', 'CNBC', 'MIS Asia', 'Cincinnati.com', 'The Verge via Yahoo! News', 'MSPoweruser.com', 'Daily Caller', 'CNN', 'Variety via Yahoo! Finance', 'Bloomberg via Yahoo! Finance India', 'Daily Signal', 'The Register', 'The Hindu', 'Bloomberg', 'Greenock Telegraph', 'Breitbart News', 'Hot Air', 'Los Angeles Times', 'The Atlantic via Yahoo! News', 'TASS', 'Government of Jamaica, Jamaica Information Service', 'The New Indian Express', 'Orlando Sentinel', 'Associated Press via Yahoo! Finance', 'Geek', 'The Whistler', 'The Verge', 'Firstpost', 'Arab News', 'The Verge via Yahoo! News', 'TASS', 'WLRN', 'Reuters via Yahoo UK & Ireland Finance', 'Wall Street Journal', 'The Daily Star', 'Reuters via Yahoo Canada News', 'The Independent', 'The Business Times Singapore', 'Business Insider via Yahoo! Finance', 'FOX Business', 'The Scotsman', 'MyNewsLA.com', 'International Middle East Media Center', 'http://wales.gov.uk/', 'South China Morning Post', 'Bloomberg', 'Ynetnews', 'Firstpost', 'TechCrunch', 'Forbes', 'Daily Mail', 'AFP via Yahoo! News', 'Daily Caller', 'NBCNews.com', 'Sky News', 'ITProPortal', 'Your Middle East', 'New York Magazine', nan, 'CNN Money', 'AAP via Yahoo!7 Finance', 'Telegraph.co.uk', 'International Business Times UK', 'ZDNet', 'Digital Trends via Yahoo! Sports', 'Reuters via Yahoo! News', 'Al-Monitor', 'Quartz', 'Neurogadget', 'International Business Times via Yahoo UK & Ireland News', 'Wall Street Journal (blog)', 'ZDNet', 'KLTV 7 Tyler', 'Reuters via Yahoo UK & Ireland Finance', 'The Inquirer', 'Bloomberg', 'Softpedia News (blog)', 'The Times of Israel', 'Athens Daily Review', 'MetroNews Canada', 'Yahoo! Maktoob News', 'Al-Monitor', 'Yahoo News', 'GeekWire', 'TASS', 'The Guardian', 'Seattle Times', 'KLTV 7 Tyler', 'Market Realist', 'Malaysian Digest', 'Pocket-lint.com', 'The Globe and Mail (subscription)', 'BuzzFeed News', 'Wareable', 'Business Insider via Yahoo! Finance', 'Fortune', 'IB Times via Yahoo! Singapore News', 'Reuters UK', 'Reuters - UK Focus via Yahoo UK & Ireland Finance', 'Globalnews.ca', 'Manila Bulletin', 'SiliconANGLE', 'WND.com', 'The Guardian', 'National Review Online', 'The Business Times Singapore', 'Mashable', 'Air Force Link', 'Forbes', 'The Washington Times', 'The Wall Street Journal', 'MarketWatch', 'New York Times', 'Wall Street Journal Blogs', 'Yahoo News', 'Mondoweiss', 'Bloomberg', 'Independent Tribune', 'The Worldfolio', 'The Standard', 'KCCI 8 Des Moines', 'SBS', 'Entertainment Tonight', 'PCWorld', 'IBN live', 'Daily Caller', 'WAFA - Palestine News Agency', 'The Hill (blog)', 'The Standard', 'Firstpost', 'WinBeta', 'Al-Monitor', 'PR Newswire (press release)', 'Motley Fool', 'Forbes', nan, 'strategy+business (registration) (blog)', 'Washington Free Beacon', 'Hindu Business Line', 'Jordan Times', 'Market Realist via Yahoo! Finance', 'Salt Lake Tribune', 'Bloomberg via Yahoo! Finance', 'ZDNet', 'THISDAY Live', 'Geektime', 'Malaysian Digest', 'Rappler.com', 'Entertainment Weekly', 'Yahoo Politics', 'Forbes', 'Popular Science', 'Washington Post', 'Firstpost', 'Ynetnews', 'The Dorset Echo', 'Game Informer', 'Fox News', 'KLTV 7 Tyler', 'Financial Market News', 'Motley Fool', 'Alphr', 'WinBeta', 'Business Insider via Yahoo! Finance', 'bnn.ca', 'KCCI 8 Des Moines', 'Palatinate', 'The Weekly Standard (blog)', 'New York Magazine', 'Breitbart News', 'Associated Press via Yahoo UK & Ireland News', 'Washington Post', 'Softpedia News', 'Bloomberg', 'Bloomberg', 'The Nation.', 'Money Magazine', 'RT', 'Washington Post', 'NDTV', 'WAFA - Palestine News Agency', nan, 'CPI Financial', 'The Times of Israel', 'ABC News', 'Bloomberg', 'The Verge', 'Foreign Policy In Focus', 'Hartford Courant', 'CNBC', 'WinBeta', 'CNN International', 'WILX 10 Lansing', 'The Wall Street Journal', 'BlackNews.com (press release)', 'Sputnik International', 'Huffington Post', 'SiliconANGLE (blog)', 'Mirror.co.uk', 'Vanity Fair', 'University of St. Thomas Newsroom', 'U.S. News & World Report', 'CNBC via Yahoo! Finance', 'AFP via Yahoo! India News', 'USA TODAY', 'CBS 5 Phoenix', 'Quincy Herald-Whig', 'ThinkProgress', 'ZDNet', 'Entertainment Weekly', 'TheHostingNews.com (press release) (blog)', 'Business Mirror', 'Washington Post', 'The National', 'IT PRO', 'The Economist (blog)', 'MarketWatch', 'BBC News', 'WAFA - Palestine News Agency', 'Tuoitrenews (press release)', 'Fox News', 'NBC NEWS', 'Bloomberg via Yahoo UK & Ireland Finance', 'The National Interest Online (blog)', 'USA TODAY', 'Hot Hardware', 'The Tennessean', 'Reuters', 'Digital Trends via Yahoo! News', 'Bloomberg', 'SiliconANGLE (blog)', 'FOX Business', 'AFP via Yahoo! News', 'Trend News Agency', 'Vanguard', 'Multi-Housing News', 'The Next Web', 'The Hill (blog)', 'Nasdaq', 'Business Mirror', 'Financial Times', 'Palestine Herald Press', 'Financial Times', 'Cult of Mac', 'Bloomberg via Yahoo! Finance', 'CNBC', 'BusinessWorld Online Edition', 'Reuters via Yahoo UK & Ireland News', 'Business Wire via Yahoo! Finance India', 'Neowin', 'Government of Jamaica, Jamaica Information Service', 'Daily Caller', 'The Libertarian Republic', 'ABC News', 'Al-Monitor', 'CNBC', 'KPLR 11 St. Louis', 'The Times (subscription)', 'Denver Post', 'Longview News-Journal', 'Redwood Falls Gazette', 'Calgary Sun', 'Island Packet', 'International Business Times via Yahoo UK & Ireland News', 'The Guardian', 'The Verge via Yahoo Canada News', 'FOX Business', 'Yibada (English Edition)', 'Belfast Telegraph', 'Boston Herald', 'WMBF News Myrtle Beach', 'GeekWire', 'Vox', 'Hamilton Journal News', 'Center for Research on Globalization', 'Daily Times', 'The Globe and Mail (subscription)', 'CNBC', 'Daily Caller', 'TASS', 'The Financial Express via Yahoo! Finance India', 'The Independent', 'Reuters via Yahoo! Finance India', 'WebProNews', 'CNET', 'Digital Trends via Yahoo! Sports', 'Wall Street Journal (blog)', 'ITProPortal', 'Reuters', 'Mediaite', 'Business Wire via Yahoo UK & Ireland Finance', 'The Next Web', 'The Atlantic', 'CXOToday.com', 'NBCNews.com', 'Bloomberg', 'The Inquisitr', 'The Australian Financial Review', 'Daily Caller', 'Washington Times', 'Property Magazine International', 'The Independent', 'United Nations', 'ValueWalk', 'Motley Fool', 'The Next Web', 'The Australian Financial Review', 'Reuters UK', 'This Is Money', 'Washington Times', 'Wired News', 'Hollywood Reporter', 'PR Newswire (press release)', 'Neowin', 'SiliconANGLE (blog)', 'ITworld', 'Bloomberg', 'ABC News', 'Toronto Star', 'NewsFactor Network', 'Khaleej Times', 'Crowdfund Insider', 'Reuters UK', 'Aljazeera.com', 'The ', 'The Register', 'Business Mirror', 'The Drum', 'Huffington Post', 'InformationWeek', 'ABC News', 'The New American', 'SC Magazine', 'VOA News', 'CNBC', 'Sky News', 'TASS', 'The Hindu', 'Q13 FOX', 'Morning Journal News', 'The Independent', 'PC World', 'Los Angeles Times', 'Project Syndicate', 'Huffington Post', 'International Business Times', 'The Economist', 'WSYR', 'New York Daily News', 'IBN live', 'Crux: Covering all things Catholic', 'AFP via Yahoo! India News', 'The Hill', 'International Business Times', 'Digital Trends via Yahoo! Sports', 'Reuters via Yahoo! Sports', 'Associated Press via Yahoo! News', 'Bloomberg', 'Digital Trends', 'The Hill', 'Patently Apple', 'PBS NewsHour', 'The Age', 'Reuters via Yahoo! Finance', 'DNA India', 'Express.co.uk', 'Daily Times', 'ITProPortal', 'TechCrunch', 'Scoop.co.nz (press release)', 'The National', 'Fortune', 'Wired.co.uk', 'TechCrunch', 'NewsBusters (blog)', 'Reuters via Yahoo! Finance', 'Stars and Stripes', 'snopes.com', 'Financial Post', 'Reuters', 'Express.co.uk', 'Financial Times', 'The Christian Post', 'MIS Asia', 'The Atlantic', 'The American Lawyer', 'Forbes', 'V3.co.uk', 'The National Interest Online', 'CNN', 'Manila Bulletin', 'MTV.com', 'Eyewitness News', 'Business Wire (press release)', 'Reuters via Yahoo! News', 'Huffington Post', 'Daily Times', 'Huffington Post', 'The Electronic Intifada (blog)', 'NPR', 'CNET', 'Ahram Online', 'Palestine News Network', 'Channel News Asia', 'Morning Journal News', 'PoliticusUSA', 'Salon', 'Bangkok Post', 'Stuff.co.nz', 'Al Jazeera via Yahoo Maktoob News', 'Indiatimes.com', 'Bloomberg', 'PC World', 'The Muslim News', 'IANS via Yahoo Maktoob News', 'Reuters via Yahoo! News', 'TheBlaze.com', 'Sputnik International', 'Vox', 'VentureBeat', 'Cincinnati.com', 'KPAX-TV', 'ForexLive', 'Nasdaq', 'Bangkok Post', 'Chicago Tribune', 'Denver Post', 'CNNMoney', 'Forbes', 'NBCNews.com', 'Huffington Post', 'Inquirer', 'Reuters', 'Associated Press via Yahoo! News', 'Reuters', 'Bloomberg', 'NPR', 'Fox News', 'Financial Express', 'WYTV', 'Los Angeles Times', 'Breitbart News', 'Press TV', 'The Straits Times', 'Daily News & Analysis', 'Phone Scoop', 'CNBC', 'Sydney Morning Herald', 'ABC News', 'Hamilton Spectator', 'YLE News', 'Associated Press via Yahoo! Finance', 'Politico', 'Flathead Beacon', 'Detroit Free Press', 'RTE.ie', 'CNET', 'CNBC via Yahoo! New Zealand Finance', 'Scotsman', 'Business Standard', 'Digital Trends via Yahoo! News', 'The Straits Times', 'PC World', 'WAFA - Palestine News Agency', 'Channel News Asia', 'Financial Times', 'MIS Asia', 'PR Newswire (press release)', 'ABC News', 'Express.co.uk', 'BBC News', 'The Motley Fool', 'Inquirer.net', 'International Business Times, India Edition', 'Fox 32 Chicago', 'The Hill (blog)', 'International Business Times via Yahoo UK & Ireland News', 'GamesIndustry.biz', 'Bloomberg', 'Business Insider', 'ExtremeTech', 'Softpedia News', 'CBS News', 'Huffington Post Canada', 'The Verge', 'The Indian Express', 'VentureBeat', 'VentureBeat', 'Seeking Alpha', 'The Register', 'Daily Signal', 'KOCO Oklahoma City', 'Huffington Post UK', 'Bloomberg', 'Breitbart News', 'Times of India', 'The Register', 'Economic Times', 'Reuters UK', 'Telegraph.co.uk', 'AFP via Yahoo! News', 'PolitiFact', 'Skift', 'WinBeta', 'Jerusalem Post Israel News', 'Associated Press via Yahoo! Philippines Sports', 'Wall Street Journal', 'Malaysian Digest', 'Associated Press via Yahoo UK & Ireland News', 'TWCN Tech News (blog)', 'ZDNet', 'Digital Spy', 'Washington Post', 'Business Insider', 'Bloomberg', 'Lazygamer', 'Quartz', 'WCCFtech', 'Stabroek News', 'The Atlantic', 'CNSNews.com', 'Reuters', 'Tasnim News Agency (press release)', 'TechCrunch', 'Bernama', 'Reuters', 'USA TODAY', 'VentureBeat', 'Gallup', 'GameSpot via Yahoo! News', 'Washington Post', 'Reuters', 'WSYR', 'Fox 59', 'CNNMoney', 'Telegraph via Yahoo UK & Ireland Finance', 'Business Standard', 'Miami Herald', 'MIS Asia', 'Bloomberg via Yahoo! New Zealand Finance', 'Huffington Post', 'The Verge', 'Omnisport via Yahoo! Sports', 'iT News', 'AFP via Yahoo! News', 'ForexLive', 'YIBADA English', 'ABC News', 'The Verge via Yahoo! News', 'Business Insider via Yahoo! India News', 'CRN', 'Common Dreams (press release)', 'Economic Times', '680 News', 'The Canadian Press via Yahoo Canada News', 'Recode', 'The Verge', 'The Herald', 'Reuters via Yahoo! Finance', 'Politico', 'NBC NEWS', 'Bloomberg', 'Manila Bulletin', 'Hellenic Shipping News Worldwide', 'The Indian Express', 'CNBC via Yahoo Canada Finance', 'Himalayan Times', 'Business Insider via Yahoo! Finance', 'WILX 10 Lansing', 'Economic Times', 'Market Watch', 'AnandTech', 'CNET', 'The Washington Times', 'PC Magazine', 'The Yucatan Times', 'Fortune', 'Huffington Post', 'Tampa Bay Times', 'Business Insider', 'Romper', 'Economic Times', 'New Europe', 'CNN International', 'FOX40 Sacramento', 'Digital Trends via Yahoo UK & Ireland News', 'MarketWatch', 'Nyasa Times', 'Yahoo News', 'News West 9 Midland', 'Variety', 'Daily Caller', 'Denver Post', 'South China Morning Post (subscription)', 'USA TODAY', 'Bloomberg', 'Fiji Sun Online', 'U.S. News & World Report', 'UPROXX', 'ZDNet', 'Financial Express', 'The Times of Israel', 'FXStreet', 'Slipped Disc', 'Marketwire', 'Financial Times', 'Washington Post', 'Daily Mail', 'Syracuse.com', 'Vanguard', 'USA TODAY', 'WSOC Charlotte', 'The Canadian Press via Yahoo Canada Finance', 'Reuters Blogs (blog)', 'Fast Company Magazine', 'The Washington Times', 'The Hill', 'AFP via Yahoo! News', 'Sputnik International', 'The Diplomat', 'Palestine Herald Press', 'The Weekly Standard', 'MarketWatch', 'Reuters', 'BBC News', 'Daily Mail', 'NBC NEWS', 'Minneapolis-St. Paul Star Tribune', 'This is Money', 'The Guardian Nigeria (satire) (press release) (blog)', 'WinBeta', 'Times of India', 'Business Insider', 'The Straits Times', 'ZDNet UK', 'CNBC', 'PC World', 'Neowin', 'Reuters', 'WinBeta', 'American Thinker (blog)', 'The Root', 'Bloomberg', 'Kotaku', 'Health Aim', 'The Washington Times', 'Government Technology', 'Mashable', 'CNBC via Yahoo! Finance India', 'ChronicleLive', 'Huffington Post', 'Washington Post', 'Brisbane Times', 'Press Trust of India', 'BetaNews', 'FOX 59 Indianapolis', 'CounterPunch', 'Android Headlines - Android News', 'International Business Times, Singapore Edition', 'Pine Bluff Commercial', 'The Globalist', 'Bloomberg', 'The New Zealand Herald', 'MarketWatch', 'Reuters', 'Frome Times', 'MWC News', 'Reuters', 'TheBlaze.com', 'Fox News', 'Business Recorder', 'Telegraph.co.uk', 'Commentary Magazine', 'Business Insider UK', 'Al-Arabiya', 'Arab News', 'Investorplace.com', 'gearburn', 'MarketWatch', 'International Business Times', 'CNBC', 'Stuff.co.nz', 'Kathimerini', 'The Motley Fool', 'BDlive', 'EnterpriseContentManagementConnection-ECM', 'CIO', 'Climate Home', 'Al-Monitor', 'Brookings Institution (blog)', 'Reuters UK', 'Boston Herald', 'Malta Independent Online', 'BetaNews', 'ABC News', 'CBS San Francisco', 'Bloomberg via Yahoo! Finance', 'BBC News', 'Reuters', 'International Business Times UK', 'The Verge via Yahoo! News', 'The Register', 'Breitbart News', 'Delta Farm Press', 'Phone Arena', 'Market Realist via Yahoo! Finance', 'NPR', 'AFP Relax via Yahoo! Singapore News', 'NewsDay', 'Newshub', 'The Straits Times', 'WCVB Boston', 'The Guardian', 'PoliticusUSA', 'Institutional Investor (blog)', 'Sky News via Yahoo UK & Ireland Finance', 'TODAYonline', 'Town Hall', 'Bloomberg', 'Seeking Alpha', 'The Conversation AU', 'Democracy Now!', 'Huffington Post', 'New York Times', 'TechnoBuffalo', 'Fusion', 'The Atlantic', 'The Hill', 'AFP via Yahoo! News', 'Haaretz', 'Forbes', 'Salon', "Investor's Business Daily", 'The ', 'eco-business.com', 'Reuters', 'Town Hall', 'Transport Topics Online', 'Waltonian', 'Denver Post', 'U.S. News & World Report', 'NewsBusters (blog)', 'Reuters via Yahoo! News', 'AFP News via Yahoo! Philippines News', 'CT Post', 'Bloomberg', 'The Hill', 'Techpoint.ng (blog)', 'Palestine Herald Press', 'CNBC', 'World Bank Group', 'CNBC', 'The Guardian (blog)', 'Wall Street Journal (blog)', 'Hurriyet Daily News', 'Wall Street Journal (blog)', 'Intifada Palestine', 'BGR', 'Katib\x9d\x9dn', 'AllAfrica.com', 'The Examiner', 'Digital Trends via Yahoo! News', 'Democracy Now!', 'The Hill (blog)', 'WinBeta', 'InfoWorld', 'NBCNews.com', 'Science Magazine', 'Network World', 'NJ.com', 'AFP via Yahoo UK & Ireland News', 'RealClearPolitics', 'Singapore Business Review via Yahoo! Finance', 'Palestine News Network', 'Awful Announcing', 'Ocala', 'Minneapolis-St. Paul Star Tribune', 'AFP Relax News via Yahoo! News', 'Washington Post', 'BGR', 'New York Times', 'Washington Post', 'Herald Sun', 'THISDAY Live', 'Reuters Blogs (blog)', 'Channel NewsAsia', 'PR Newswire via Yahoo! Finance', 'Aljazeera.com', 'Business Insider via Yahoo! Finance', 'Bloomberg', 'NewsWest9.com', 'Daily Mail', 'Quartz', 'Ahlul Bayt News Agency (press release)', 'CBS News', 'The Business Times Singapore', 'Yahoo Parenting', 'Brookings Institution (blog)', 'Reuters', 'Reuters UK', 'The Independent', 'The McDowell News', 'Associated Press via Yahoo! Finance', 'AFP via Yahoo! New Zealand News', 'The Guardian', 'Financial Times', 'Fox News', 'Android Central', 'Virtualization Review', 'Al Jazeera via Yahoo Maktoob News', 'Politico', 'The Manila Times', 'Pulitzer Center on Crisis Reporting', 'Associated Press via Yahoo! Singapore Sports', 'HardwareZone', 'Breitbart News', 'Reuters', 'Entrepreneur', 'WMPoweruser.com', 'Breitbart News', 'NBCNews.com', 'The Japan Times', 'Palestine News Network', 'Geelong Advertiser', 'MSPoweruser.com', 'Associated Press via Yahoo! Finance', 'SuperSite for Windows', 'Android Central', 'Reuters', 'Jerusalem Post Israel News', 'Nottingham Post', 'AllAfrica.com', 'euronews', 'Miami Herald', 'Business Standard India', 'Sault Star', 'Financial Times', 'MTV.com', 'Seeking Alpha', 'Softpedia News', 'Daily Mail', 'Business Standard (press release) (registration) (blog)', 'Christian Science Monitor', 'The Economist', 'WinBeta', 'ABC News', 'Neos Kosmos', 'NBCNews.com', 'Manila Bulletin', 'The Wall Street Journal', 'CBC via Yahoo Canada News', 'AFP via Yahoo! News', 'Business Insider', 'Forbes', 'Lifehacker Australia', 'Softpedia News (blog)', 'The Rock Hill Herald', 'Gizmodo', 'CIO', 'Vineland Daily Journal', 'VOCM', 'The New Yorker', 'Yahoo7 News', 'Ahram Online', 'American Thinker (blog)', 'Gympie Times', 'GameSpot', 'NewsOK.com', 'Reuters', 'ABC News', 'VOA News', 'The Guardian', 'Economic Times', 'The Guardian', 'Pocket-lint.com', 'Buffalo News', 'Shanghai Daily (subscription)', 'ZDNet', 'Huffington Post', 'Bloomberg via Yahoo UK & Ireland Finance', 'The Verge', 'BreakingNews.ie', 'Reuters via Yahoo! News', 'Reuters', 'Charisma News', 'Center For American Progress', 'Palestine Herald Press', 'Daily Signal', 'Firstpost', 'Philly.com (blog)', 'TheChronicleHerald.ca', 'Whitehouse.gov (press release)', 'Morning Star', 'The Fiscal Times', 'AFP via Yahoo! India News', 'Economic Times', 'Business Standard India', 'Softpedia News', 'Zacks via Yahoo! Finance', 'ThinkProgress', 'PoliticusUSA', 'Payvand Iran News', 'Blasting News', 'Kawartha Media Group', 'Fairfield Daily Republic', 'Reuters Africa', 'Right Wing Watch', 'Intifada Palestine', 'Yahoo7 News', 'Vox', 'Firstpost', 'AFP via Yahoo! India News', 'Trend News Agency', 'The New Zealand Herald', 'The Sydney Morning Herald', 'Pittsburgh Post-Gazette', 'Korea Times', 'Dallas Morning News (blog)', 'Vox', 'Bloomberg', 'Wall Street Journal', 'ZDNet', 'Calgary Sun', 'Windows Central', 'Greenfield Daily Reporter', 'Billings Gazette', 'U.S. News & World Report', 'New York Times', 'Eater Austin', 'CMSWire', 'AFP via Yahoo! Finance', 'Benzinga', 'Business Insider via Yahoo Canada Finance', 'The Wall Street Journal', 'Irish Times', 'The Record', 'Business Insider', 'Washington Post', 'AllAfrica.com', 'ABC News', 'Canada Politics via Yahoo Canada News', 'Fox News Latino', 'Mashable', 'Reuters', 'TheBlaze.com', 'Essence.com', 'Ventures Africa', 'Washington Examiner', 'The Wall Street Journal', 'Quartz', 'Dothan First', 'GSMArena.com', 'The Business Times Singapore', 'GameSpot', 'Thurrott.com (blog)', 'Macleans.ca', 'KSL.com', 'WGAL 8 Susquehanna Valley', 'The Australian Financial Review', 'Daily Beast', 'Reuters India', 'RollingStone.com', 'Reuters via Yahoo! India News', 'International Solidarity Movement', 'The Verge via Yahoo! News', 'CNN Money', 'Channel NewsAsia', 'Grand Forks Herald', 'The Next Web', 'Jewish News', 'Reuters via Yahoo! Finance', 'Neowin', 'Florida Times-Union', 'Western Journalism', 'Cosmopolitan.com', 'Android Police', 'Reuters Africa', 'Vox', 'The Hill', 'ZDNet UK', 'WinBeta', 'RenewAmerica', 'NPR', 'WND.com', 'Korea Times', 'VentureBeat', 'Irish Times', 'WGAL 8 Susquehanna Valley', 'CleanTechnica', 'International Middle East Media Center', 'The National', 'Business Insider Australia', 'ZDNet', 'New York Times', 'GMA News Online', 'The Christian Science Monitor', 'Reuters via Yahoo! India News', ' ', 'Digital Trends', 'Philly.com', 'NPR', 'The Register', 'Newshub', 'Neowin', 'Bloomberg', 'Reuters', 'U.S. News & World Report', 'New Kerala', 'The Nation Newspaper', 'Daily Times', 'The Dorset Echo', 'Power Line (blog)', 'The Statesman', 'TechnoBuffalo', 'Journal Online', 'Denver Post', 'Chronicle of Higher Education (subscription)', 'Boing Boing', '9&10 News', 'Vox', 'Vox', 'eWeek', 'The Sunshine Coast Daily', 'Hellenic Shipping News Worldwide', 'STRATFOR', 'Politico', 'Bloomberg', 'Business Standard', 'CNBC', 'Bloomberg', 'Edmonton Sun', 'TPM', 'Naked Security', 'Newsmax', 'PR Newswire', 'Associated Press via Yahoo! News', 'ABC News', 'Forbes', 'Arutz Sheva', 'Columbus Ledger-Enquirer', 'Daily Sabah', 'Business Insider via Yahoo! Finance', 'GlobeNewswire via Yahoo! Finance', 'WAFA - Palestine News Agency', 'WebProNews', 'Reuters via Yahoo! News', 'The Daily Advertiser', 'Channel NewsAsia', 'Foreign Policy (blog)', 'USA TODAY', 'Twitchy', 'The Inquisitr', 'Network World', 'The Verge', 'MSPoweruser.com', 'Digital Trends', 'World Socialist Web Site', 'TASS', ' ', 'Economic Times', 'Bloomberg', 'MENAFN', 'USA TODAY', 'CTV News', 'The Nation', 'Business Insider Australia', 'TheBlaze.com', 'Malaysiakini (subscription)', 'New Straits Times Online', 'CMSWire', 'Reuters UK', 'HipHopDX', 'eWeek', 'Jewish Telegraphic Agency', 'Reuters UK', 'Huffington Post', 'TPM', 'Entertainment Weekly', 'TechTarget', 'Alaska Dispatch News', 'Timaru Herald', 'Reuters Africa', 'Salon', 'GhanaWeb', 'TechRadar', 'CarAdvice', 'Reuters', 'Malta Independent Online', 'Financial Times', 'The Hill', 'Cinema Blend', 'BizPac Review', 'Reuters', 'M\x9d\x9dtro Montr\x9d\x9dal', 'Sputnik International', 'BBC News', 'Jezebel', 'International Business Times via Yahoo UK & Ireland News', 'BetaNews', 'Reseller News', 'Daily Signal', 'Military Times', 'Bloomberg', 'The Verge', 'Bloomberg', 'The Independent', 'Comicbook.com', nan, 'Yahoo News UK', 'Los Angeles Times', 'Big News Network.com', 'Economic Times', 'Deadline', 'InfoWorld', 'Brandon Sun', 'Civil Society Media', 'Bloomberg', 'USA TODAY', 'KSLA-TV', 'Flavorwire', 'International Business Times via Yahoo UK & Ireland News', 'The Washington Times', 'Business Wire via Yahoo! Finance', 'Metrotvnews.com', 'Reuters Blogs (blog)', 'Fox News', 'USA TODAY', 'Xinhua', 'OregonLive.com', 'New York Times', 'Washington Post', 'Reuters', 'ABC News', 'BuzzFeed News', 'Reuters UK', 'New Zealand Herald', 'Business Insider via Yahoo! Finance', 'The Times of India', 'Reuters via Yahoo! India News', 'MSPoweruser.com', 'Council on Foreign Relations', 'Washington Examiner', 'The Verge', 'The New Zealand Herald', 'Los Angeles Times', 'Arab News via Yahoo Maktoob News', 'NBCNews.com', 'Kotaku Australia', 'The Register', 'The San Diego Union-Tribune', 'Reuters via Yahoo! Finance', 'Observer', 'Kathimerini', 'Yonhap News', 'Economic Times', 'Dallas Morning News', 'Bloomberg', 'Leicester Mercury', 'WWSB ABC 7', 'The Star Online', 'TIME', 'USA TODAY', 'Orlando Sentinel', 'Seeking Alpha', 'MSPoweruser.com', 'Forbes', 'DZ Foot', 'Business Insider', 'AAP via Yahoo!7 Finance', 'Al-Monitor', 'Reuters', 'TMZ.com', 'Huffington Post', 'Politico', 'NPR', 'The Wall Street Journal', 'South China Morning Post (subscription)', 'STLtoday.com', 'USA TODAY', 'The Inquisitr', 'South China Morning Post', 'MSPoweruser.com', 'CNBC', 'Channel NewsAsia', 'NPR', 'Quartz', 'BizPac Review', 'Reuters Africa', 'Porterville Recorder', 'Middle East Monitor', 'AFP via Yahoo! India News', 'Reuters', 'Reuters via Yahoo! Finance', 'NPR', 'RT', 'Minneapolis-St. Paul Star Tribune', 'Hotel News Now', 'Palestine Herald Press', 'Greek Reporter', 'ABC News', 'Irish Independent', 'Breitbart News', 'Olean Times Herald', 'Manila Bulletin', 'Fox News', 'WAFA - Palestine News Agency', 'Sputnik International', 'The Toledo Blade', 'Bloomberg', 'Financial Times', 'Reuters via Yahoo! Finance', 'Seeking Alpha', 'CNBC', 'Digital Trends via Yahoo! Sports', 'Times Daily', 'Starpulse.com', 'Hartford Courant', 'Haaretz', 'Buffalo News', 'Property Guru via Yahoo! Singapore News', 'Livemint', 'Business Insider', 'Seeking Alpha', 'telecomasia.net', 'The Times of Israel', 'Daily Beast', 'GhanaWeb', 'MarketWatch', 'Press TV', 'Times of India (blog)', '13abc Action News', 'Free Press Journal', 'Neowin', 'The Register', 'Scottsbluff Star Herald', 'Nasdaq', 'The Globe and Mail (subscription)', 'Opposing Views', 'Raw Story', 'Business News', 'RealClearPolitics', 'The Fiscal Times', 'CNET', 'New York Times', 'KLTV 7 Tyler', 'Rand Daily Mail', 'BetaNews', 'MarketWatch', 'The Consumerist', 'BetaNews', 'Florida Today', 'The Verge', 'Fox News', 'ExtremeTech', 'WinBeta', 'Politico', 'Quartz', 'International Business Times UK', 'International Business Times', 'Billboard', 'Game Informer', 'Digital Trends', 'Economic Times', 'Financial Times', 'Windows Central', 'WinBeta', 'The Guardian', 'KNBN Rapid City', 'Tech Times', 'WinBeta', 'Lisbon Morning Journal', 'Fortune', 'Business Wire (press release)', 'Washington Post', 'NPR', 'gulfnews.com', 'Town Hall', 'Chicago Sun-Times', 'Reuters', 'www.worldbulletin.net', 'Philippine Star', 'Transport Topics Online', 'New Zealand Herald', 'Daily Mail', 'AFP via Yahoo! News', 'Vanguard', 'Whitehouse.gov (press release)', 'Times LIVE', 'The Standard', 'Los Angeles Times', 'euronews', 'ABC News', 'The News', 'Hot Air', 'Miami Herald', 'The Chronicle Herald', 'WPTZ', 'The Wall Street Journal', 'ZDNet', 'Mobile & Apps', 'V3.co.uk', 'Bloomberg', 'EFF', 'AlterNet', 'New York Daily News', 'Info-Palestine', 'EMQ', 'New York Times', 'CNBC', 'NPR', 'Supply Chain Management Review', 'Black Enterprise', 'UTDailyBeacon.com', 'PoliticsHome.com', 'Tech Times', 'Arab American News', 'AFP via Yahoo Maktoob News', 'New York Times', 'The Guardian', 'ABC Online', 'American Thinker', 'Breitbart News', 'Forbes', 'Huffington Post', 'ABC News', 'The Nation Newspaper', 'BetaNews', 'WinBeta', 'Las Vegas Review-Journal (blog)', 'Baltimore Sun', 'ABC News', 'USA TODAY', 'Whitehouse.gov (press release)', 'ITProPortal', 'MSNBC', 'The Hill (blog)', 'Bloomberg', 'Vox', 'The FADER', 'WAFA - Palestine News Agency', 'Business Wire via Yahoo! Finance', 'BDlive', 'WindowsItPro (subscription)', 'Network World', 'Macworld UK', 'International Business Times', 'Daily News Egypt', 'KPCC Pasadena', 'AppleInsider (press release) (blog)', 'Brown County Democrat', 'Metro', 'InformationWeek', 'Business Insider', 'The Register', 'Stabroek News', 'azcentral.com', 'Global Times', 'Miami Herald', 'Business Standard', 'Fox News', 'Sputnik International', 'Hot Air', 'Clapway', 'Japan Today', 'Reuters via Yahoo Maktoob News', 'Bloomington Pantagraph', 'NBC NEWS', 'USA TODAY', 'InfoWorld', 'NDTV', 'RenewEconomy', 'Scoop.co.nz', 'Reuters via Yahoo! Finance', 'Press Trust of India', 'WKRG News 5 Mobile', 'NBC New York', 'CBS News', 'Business Insider', 'WAFA - Palestine News Agency', 'Al Jazeera via Yahoo UK & Ireland News', 'GhanaWeb', 'TechnoBuffalo', 'Associated Press via Yahoo! News', 'Baltic Times', 'The Hill (blog)', 'RTT News', 'TPM', 'RCR Wireless News', 'Deutsche Welle', 'BGR News via Yahoo! News', 'New Straits Times Online', 'MYFOXZONE.com', 'Anadolu Agency', 'Seattle Times', 'Reuters UK', 'CityNews', 'The Guardian', 'MLive.com', 'Associated Press via Yahoo! News', 'NPR', 'euronews', 'The Nation Newspaper', 'Motley Fool', 'TechCrunch', 'WJXT Jacksonville', 'Daily Caller', 'The Economist (blog)', 'Bloomberg via Yahoo! Finance', 'AFP via Yahoo! Finance', 'The Next Web', 'Neowin', 'TechTarget', 'Associated Press via Yahoo! News', 'U.S. News & World Report', 'Business Insider', 'The Globe and Mail', 'SB Nation', 'Phys.Org', 'WinBeta', 'The Electronic Intifada (blog)', 'Breitbart News', 'UPI', 'UN News Centre', 'Washington Free Beacon', 'NBC NEWS', 'CNBC via Yahoo! Finance', 'WinBeta', 'BuzzFeed News', 'The Diplomat', 'Nyasa Times', 'South China Morning Post (subscription)', 'Nikkei Asian Review', 'CNBC', 'Financial Times', 'Heavy.com', 'The Wall Street Journal', 'Business Insider', 'Hawaii News Now', 'Center for Research on Globalization', 'Salon.com', 'Macworld UK', 'CoinDesk', 'Albuquerque Journal', 'The Guardian', 'Hindu Business Line', 'WSBT-TV', 'ABC News', 'Breitbart News', 'Yahoo7 News', 'IANS via Yahoo Maktoob News', 'Business in Vancouver', 'Small Business Trends', 'InfoQ.com', 'Entertainment Weekly', 'The Next Web', 'Outlook India', 'RT', 'YubaNet', 'GameSpot', 'The Hill (blog)', 'Bloomberg', 'kfor.com', 'Times LIVE', 'Washington Examiner', 'American Spectator', 'WND.com', 'UPROXX via Yahoo! News', 'WZZM13.com', 'IBNLive', 'Seeking Alpha', 'eWeek', 'Al Jazeera via Yahoo UK & Ireland News', 'Financial Times', 'WNDU-TV', 'Bloomberg', 'Independent Online', 'Chron.com', 'Yahoo Finance', 'UPI', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'Business Standard', 'Pc-Tablet Media', 'NPR', 'Fox Business', 'Bloomberg', 'Tempo.co', 'Washington Examiner', 'MSPoweruser.com', 'BuzzFeed News', 'The Hill (blog)', 'MarketWatch', 'ABC News', 'FXStreet', 'The Age', 'CNBC', 'NPR', 'Radio Tamazuj', 'NPR', 'Neowin', 'Emirates 24|7', 'The Daily Star', 'Economic Times', 'WAFA - Palestine News Agency', 'The Japan Times', 'Computing.co.uk', 'NPR', 'ABC News', 'Reuters UK', 'Reuters UK', 'TIME', 'Daily Mail', 'Gisborne Herald', 'Mediaite', 'FOX 8 WGHP', 'The Intercept', 'www.worldbulletin.net', 'Washington Post', 'Daily Times', 'The Guardian', 'FOX 11 Los Angeles', 'Shanghai Daily (subscription)', 'Fox Business', 'Geek', 'Lifehacker Australia', 'The Inquisitr', 'Channel NewsAsia', 'Tech Times', 'WKRG News 5 Mobile', 'AllAfrica.com', 'Chicago Tribune', 'Yahoo Finance', 'Chicago Sun-Times', 'BDlive', 'Market Realist via Yahoo! New Zealand Finance', 'The Market Oracle', 'Business Insider', 'The Hill', 'FOX 8 WGHP', 'Business Insider via Yahoo Maktoob News', 'VentureBeat', 'Washington Post', 'ZDNet', 'MSPoweruser.com', 'Network World', 'Reuters', 'International Business Times', 'Digital Trends via Yahoo! News', 'Sky News', 'Western Journalism', 'azcentral.com', 'Los Angeles Times', 'Scotland on Sunday', 'ABC Online', 'Computer World Australia', 'Gallup', 'The Next Web', 'The Rio Times', 'Computerworld', 'CNBC', 'CTV News', 'Cato Institute (blog)', 'The Times of Israel', 'Foreign Affairs (subscription)', 'The Australian', 'Yahoo News', 'Independent Tribune', 'Arab News', 'International Business Times', 'Phys.Org', 'CNN Money', 'The Washington Times', 'Washington Post', 'Center for Research on Globalization', 'Computerworld', 'Slate Magazine', 'MarketWatch', 'Stars and Stripes', 'The Manila Times', 'WinBeta', 'Trend News Agency', 'Grist', 'The Herald', 'Associated Press via Yahoo! News', 'The Nation - Thailand's English news', 'Destructoid', 'KOLO 8 Reno', 'ABC News', 'Reuters via Yahoo! Finance', 'Social Europe', 'Reuters via Yahoo! News', 'FOX40 Sacramento', 'BGR', 'Channel NewsAsia', 'Globalnews.ca', 'Engadget', 'MTV.com', 'Zacks via Yahoo! Finance', 'RT', 'Fox News', 'Digital Trends via Yahoo! News', 'Amigobulls', '88Nine Radio Milwaukee (blog)', 'New York Times', 'RushLimbaugh.com', 'TASS', 'The Indian Express', 'Financial Advisor Magazine (registration)', 'Android Central', 'The Hill', 'WalesOnline', 'FOX40 Sacramento', 'Fortune', 'The Register', 'The Canadian Press via Yahoo Canada News', 'TheWrap', 'New York Times', 'Slashdot', 'Wall Street Journal', 'New Kerala', 'Business Insider via Yahoo Maktoob News', 'Fox News', 'The Globe and Mail (subscription)', 'WinBeta', 'Business Insider via Yahoo! Finance', 'The Canadian Press via Yahoo Canada News', 'KKTV 11 Colorado Springs', 'The Globe and Mail (subscription)', 'Yahoo Finance', 'Mashable', 'Express.co.uk', 'Reuters via Yahoo! Sports', 'Quartz via Yahoo! Finance', 'ZDNet', 'ANTARA', 'Vibe', 'The Boston Globe', 'CNN', 'AFP via Yahoo! India News', 'The News International', 'Naples Daily News', 'CBS News', 'Watchdog.org', 'ABC News', 'WAFA - Palestine News Agency', 'ABC News', 'SiliconANGLE', 'InformationWeek', 'Quartz', 'AFP via Yahoo! Finance', 'Reuters', 'Gatestone Institute', 'GSMArena.com', 'PC Gamer', 'TIME', 'Bloomberg via Yahoo! Finance', 'The Daily Star', 'USA TODAY', 'The Guardian', 'PR Newswire (press release)', 'GhanaWeb', 'PC World', 'Pakistan Christian Post', 'Wall Street Journal (blog)', 'Asia Times', 'CNBC', 'New York Post', 'ATTN', 'New York Daily News', 'WSOC Charlotte', 'Daily Caller', 'Fox Sports', 'Vox', 'gamesindustry.biz', 'Daily Mail', 'CTV News', 'Business Cloud News', 'Free Malaysia Today', 'MarketWatch', 'EUROPP - European Politics and Policy (blog)', 'The Climate Group (blog)', 'BBC News', 'The Washington Times', 'New York Post', 'Economic Times', 'Bloomberg', 'Edmonton Sun', 'KLAS-TV', 'Market Realist via Yahoo Canada Finance', 'Bloomberg via Yahoo! Finance', 'WMCTV Memphis', 'Hardcore Gamer', 'The Herald-News', 'The Sydney Morning Herald', 'The Hill', 'Minneapolis-St. Paul Star Tribune', 'U.S. News & World Report', 'PC World', 'Huffington Post', 'Sky News via Yahoo UK & Ireland News', 'Macleans.ca', 'CityNews', 'Reuters', 'My News LA', 'Forward', 'The Hindu', 'Channel News Asia', 'Al-Bawaba', 'MSPoweruser.com', 'The Verge via Yahoo! News', 'WinBeta', 'New York Times', 'Citizen TV (press release)', 'Co.Exist', 'New York Times', 'The Washington Times', 'Economic Times', 'Canada NewsWire (press release)', 'CBC.ca', 'The Guardian', 'Yahoo Finance', 'Good Morning America via Yahoo! News', 'TechCrunch', 'CNBC', 'New York Times', 'Baseline', 'The Register', 'International Herald Tribune', 'WPTZ The Champlain Valley', 'Wall Street Journal (blog)', 'Forbes', 'Digital Trends via Yahoo! Sports', 'Forbes', 'Videogamer.com', 'IBNLive', 'Reuters via Yahoo! Singapore News', 'BBC News', 'Kewanee Star Courier', 'Emirates 24|7', 'BDlive', 'Shanghai Daily (subscription)', 'The Verge', 'AAP via Yahoo!7 News', 'Business Insider via Yahoo Maktoob News', 'Metro', 'ABC News', 'Minnesota Public Radio', 'BetaNews', 'Madison.com', 'Business Insider', 'Tulsa World', 'International Business Times', 'Vox', 'International Business Times', 'Bloomberg', 'ABC News', 'TheStreet.com', 'Profit Confidential', 'Bloomberg', 'Business Insider via Yahoo! India News', 'Financial Times', 'Marketwired via Yahoo! Finance', 'Express.co.uk', 'The Australian Financial Review', 'CBC.ca', 'USA TODAY', 'Minnesota Public Radio News', 'Wall Street Journal', 'The Verge', 'VG247', 'The Hindu', 'euronews', 'WinBeta', 'Associated Press via Yahoo UK & Ireland News', 'VatorNews', 'Thegardenisland.com', 'Reuters', 'The Hindu', 'Huffington Post', 'Vanguard', 'http://www.newsgram.com/', 'Seeking Alpha', 'Washington Times', 'Northern Star', 'NPR', 'Baltimore Sun', 'IANS India Private Limited via Yahoo! Singapore News', 'FOX Business', 'ABC News', 'Nikkei Asian Review', 'Deccan Chronicle', 'Arutz Sheva', 'WA today', 'Jakarta Post', 'The Hill (blog)', 'Yahoo Finance', 'Breitbart News', 'WinBeta', 'TheBlaze.com', 'Whitehouse.gov (press release)', '9 to 5 Mac (press release)', 'Investment Executive', 'WinBeta', 'TechRepublic', 'Sputnik International', 'BBC News', 'Los Angeles Times', 'ESPN (blog)', 'Fox News', 'Right Wing Watch', 'KBTX', 'Western Journalism', 'Politico (blog)', 'Nasdaq', 'Reuters via Yahoo! Finance', 'FOX 8 WGHP', 'WND.com', 'WAFA - Palestine News Agency', 'Hot Air', 'MarketWatch via Yahoo! News', 'Reuters via Yahoo! Finance', 'Accesswire via Yahoo! Finance', 'NewsOK.com', 'Twitchy', 'Mediaite', 'Wall Street Journal (blog)', nan, 'Kuwait News Agency', 'Cato Institute (blog)', 'ABC Online', 'Anadolu Agency', 'Reuters UK', 'Center for Research on Globalization', 'The Sun Daily', 'ThinkProgress', 'EconoTimes', 'CRN', 'Business Insider', 'News24', 'International Middle East Media Center', 'The Associated Press via Yahoo Canada Sports', 'Associated Press via Yahoo! News', 'National Review Online', 'Business Insider via Yahoo! Finance', 'Digital Trends via Yahoo! News', 'SiliconANGLE', 'Daily Times', 'The Wall Street Journal', 'Gamenguide', 'Reuters via Yahoo UK & Ireland News', 'The Federalist', 'Fox 2 Detroit', 'Digital Trends via Yahoo UK & Ireland News', 'Middle East Monitor', 'CIO Australia', 'ABC News', 'CNET', 'eWeek', 'Bloomberg', 'The Korea Herald', 'Morning Journal News', 'Rising Kashmir (press release) (registration) (blog)', 'Reuters via Yahoo! Finance', 'Press TV', 'News.com.au', 'Business Insider Australia', 'CNBC', 'Associated Press via Yahoo! Philippines News', 'Business Standard', 'Forward', 'Profit Confidential', 'Yahoo Singapore News', 'Daily Signal', 'Market Realist via Yahoo! Finance', 'Financial Times', 'TheBlaze.com', 'International Middle East Media Center', 'CNN', 'Mediaite', 'TIME', 'Mother Jones', 'Business Standard', 'BuzzFeed News', 'Reuters', 'CNBC', 'NAIJ.COM', 'Hospitality Net', 'Yahoo7 News', 'USA TODAY', 'Wall Street Journal', 'WMPoweruser.com', 'American Spectator', 'ABC Online', 'The Muslim News', 'Huffington Post', 'MIS Asia', 'NBCNews.com', 'Quartz', 'NewsDay', 'Fox News', 'U.S. News & World Report', 'Financial Times', 'Rasmussen Reports', 'TheTower.org', 'Economic Times', 'Forbes', 'TIME', 'ESPN', 'Bloomberg', 'The Seattle Times', 'Reuters', 'TechnoBuffalo', 'CNN International', 'CNET via Yahoo! News', 'Firstpost', 'The Register', 'TheStranger.com (blog)', 'Reuters', 'Korea Times', 'Wall Street Journal (blog)', 'New Sabah Times', 'The Hill (blog)', 'Sarasota Herald-Tribune', 'Los Angeles Times', 'AFP via Yahoo! News', 'Saskatoon StarPhoenix', 'Telegraph.co.uk', 'TODAYonline', 'Washington Examiner', 'Bloomberg', 'Fox News', 'International Business Times via Yahoo UK & Ireland News', 'Huffington Post', 'Wall Street Journal', 'Washington Times', 'Al Jazeera via Yahoo Maktoob News', 'Daily News & Analysis', 'BT.com', 'Washington Times', 'The Huffington Post', 'The Guardian', 'Benchmark Monitor', 'UN Dispatch', 'Sioux City Journal', 'Herald & Review (blog)', 'Associated Press via Yahoo! News', 'Washington Post', 'PC World', 'The Japan Times', 'Mobile World Live', 'SBS', 'Arab News', 'PC World', 'TWCN Tech News (blog)', 'Thurrott.com (blog)', 'InformationWeek', 'Channel NewsAsia', 'MSPoweruser.com', 'BizPac Review', 'Bloomberg', 'The Age', 'The Australian Financial Review', 'E! Online', 'Washington Post', 'Nasdaq', 'Institutional Investor', 'Windows Central', 'Mediaite', 'www.worldbulletin.net', 'Worcester Telegram', 'iProgrammer', 'News One', 'SB Nation', 'KTLA', 'PEOPLE StyleWatch', 'Daiji World', 'Reuters', 'Grand Island Independent', 'Apple Insider', 'Chicago Tribune', 'ArabianBusiness.com', 'Digital Trends via Yahoo! Finance', 'Fortune', 'Ventura County Star', 'Twitchy', 'Politico (blog)', 'The Wall Street Journal', 'Gulf News via Yahoo Maktoob News', 'Palestine Herald Press', 'Gamasutra', 'Daily Mail', 'The American Prospect', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'The Ecologist', 'Truthdig', 'Financial Times', 'www.worldbulletin.net', 'Express.co.uk', 'VentureBeat', 'Lisbon Morning Journal', 'StreetInsider.com (blog)', 'The Indian Express via Yahoo! India News', 'The Star Online', 'Digital Trends via Yahoo! News', 'Sunbury Daily Item', 'TASS', 'KSWO Lawton-Wichita Falls', 'FOXSports.com', 'Hot Air', 'The Progressive Pulse', 'Politico', 'Wall Street Journal', 'Huffington Post', 'Palestine News Network', 'SoundersFC.com', 'NBC Bay Area', 'Reuters via Yahoo! Finance', 'Daily Star Gazette', 'Daily Sabah', 'NPR', 'Media Matters for America (blog)', 'The Week Magazine', 'Indianapolis Star', 'Raw Story', 'TheBlaze.com', 'Business Insider via Yahoo Maktoob News', 'Computerworld', 'Press TV', 'CNET', 'Bloomberg via Yahoo! Finance', 'The Manila Times', 'NDTV', 'CNN', 'AFP via Yahoo! India News', 'Wall Street Journal', 'ABC News', 'Business Standard', 'The Guardian', 'Reuters UK', 'Russian Information Agency Novosti', 'New York Times', 'Middle East Monitor', 'Associated Press via Yahoo! News', 'Huffington Post', 'Digital Trends via Yahoo! News', 'IANS India Private Limited/Yahoo India News via Yahoo! Singapore News', 'CMSWire', 'New York Times', 'Business Insider', 'PCWorld', 'Computer Business Review', 'The Drum', 'Washington Post', 'BetaNews', 'Press-Enterprise', 'Vox', 'Wired.co.uk', '24/7 Wall St.', 'New York Magazine', 'Greenfield Daily Reporter', 'ThinkProgress', 'Reuters via Yahoo! News', 'WinBeta', 'China Daily', 'The ', 'Kuwait Times', 'American Thinker', 'The Guardian (blog)', 'Golf.com', 'Computerworld', 'Fox News', 'Mediaite', 'Business Insider', 'The Globe and Mail', 'Engadget', 'WGAL 8 Susquehanna Valley', 'Palestine News Network', 'This is Money', 'Deutsche Welle', 'RTT News', 'CityNews', 'Daily Caller', 'Concord Monitor', 'Investing.com', 'Financial Post', 'Bournemouth Echo', 'SNAPPA Celebrity via Yahoo UK & Ireland News', 'Democracy Now!', 'AFP via Yahoo! News', 'NAIJ.COM', 'New York Times', 'Huffington Post', 'Bradenton Herald', 'Business Insider', 'The National Interest Online', 'Computer World Australia', 'Reuters', 'Texarkana Gazette', 'The Courier', 'SAMAA TV (press release) (registration) (blog)', 'CNET', 'Mediaite', 'Financial Times', 'Chicago Tribune', 'FXStreet', 'Enstarz', 'Wall Street Journal', 'The Globe and Mail (subscription)', 'Arutz Sheva', 'Associated Press via Yahoo Maktoob News', 'Softpedia News', 'CBC.ca', 'Chicago Tribune', 'MegaGames', 'New York Times', 'Daily Caller', 'Computerworld', 'Calgary Herald', 'Variety', 'City A.M.', 'Toronto Star', 'Reuters', 'Reuters', 'PC World', 'BBC News', 'Mac Rumors', 'The Wall Street Journal', 'US News & World Report', 'The Seattle Times', 'The Toledo Blade', 'Thomson Reuters Foundation', 'FOX40 Sacramento', 'Nehanda Radio', 'The Indian Express via Yahoo! India News', 'Business Wire via Yahoo! Finance', 'CNN Money', 'Associated Press via Yahoo Maktoob News', 'Daily Beast', 'CNBC via Yahoo! Finance', 'Marketplace.org', 'AlterNet', 'WJXT Jacksonville', 'TASS', 'Coast Reporter', 'Wall Street Journal (blog)', 'Hurriyet Daily News', 'Peninsula On-line', 'Dallas Morning News', 'TIME', 'Chicago Tribune', 'Associated Press via Yahoo Maktoob News', 'Reuters via Yahoo! Finance', 'WGAL 8 Susquehanna Valley', 'MarketWatch', 'Bloomberg via Yahoo! Finance', 'TVLine', 'MSPoweruser.com', 'Marketplace.org', 'Livemint', 'The Register', 'InfoWorld', 'Taipei Times', 'Entrepreneur', 'Liverpool Echo', 'MassLive.com', 'ANTARA', 'KTAL', 'YourStory.com', 'China Post', 'International Business Times', 'BusinessDay', 'Financial Times', 'Town Hall', 'Arutz Sheva', 'Nyasa Times', 'Christian Broadcasting Network', 'MyBroadband', 'TeenVogue.com', 'ValueWalk', 'Fortune', 'International Business Times UK', 'Washington Post', 'USA TODAY', 'Wall Street Journal', 'Yuma Sun', 'China Daily', 'NBC New York', 'Fox News', 'AL.com', 'The Province - BC - Victoria', 'Christian Science Monitor via Yahoo! News', 'Minneapolis-St. Paul Star Tribune', 'SiliconANGLE', 'The National', 'FOX Business', 'Herald Scotland', 'PCWorld', 'VentureBeat', 'TechTarget', 'MIS Asia', 'TIME', 'Bloomberg', 'New York Times', 'Bloomberg', 'WinBeta', 'The Next Web', 'The Motley Fool', 'The Muslim News', 'Derry Journal', 'Washington Post', 'Sputnik International', 'Press TV', 'Public Finance International', 'Washington Post', 'PC World', 'NDTV', 'The Prince Albert Daily Herald', 'WinBeta', 'The Times of Israel', 'The Hill (blog)', 'Washington Post', 'Washington Post', 'Network World', 'The Yucatan Times', 'Jacksonville Daily Progress', 'New York Times', 'Free Press Journal', 'Press TV', 'Fox Business via Yahoo! Finance', 'Reuters via Yahoo! Finance', 'Reuters', 'Reuters via Yahoo! Finance', 'KARE', 'The Desert Sun', 'The Hillsdale Daily News', 'Business Insider', 'Wall Street Journal', 'The Robesonian', 'Marketwire', 'Business Insider', 'AAP via Yahoo! New Zealand Finance', 'CNET UK', 'BDlive', 'PRWeb', 'Arutz Sheva', 'Bloomberg', 'Insurance Journal', 'New York Times', 'Good Morning America via Yahoo! News', 'Reuters UK', 'NPR', 'Sydney Morning Herald', 'The Malaysian Insider', 'The Japan Times', 'Daily Caller', 'Associated Press via Yahoo!7 Finance', 'WinBeta', 'PJ Media', 'NBC Chicago (blog)', 'Marketplace.org', 'Business Times of Western Colorado', 'Cyprus Mail', 'Economic Times', 'Daily Caller', 'Inside NoVA', 'The Straits Times', 'Nikkei Asian Review', 'Seeking Alpha', 'The Nation.', 'The Hill', 'Daily Caller', 'New York Post', 'City A.M.', 'The Federalist', 'Sydney Morning Herald', 'Daily Kos', 'Reuters', 'Palestine Herald Press', 'Deadline', 'Bloomberg', 'CNN.com', 'Newsmax', 'Quartz', 'Reuters', 'CBS News', 'AFP via Yahoo! India News', 'Jamaica Observer', 'Computing.co.uk', 'The Intercept', 'Palestine News Network', 'The Record', 'Jakarta Globe', 'MarketWatch', 'StreetInsider.com', 'CNN', 'CNBC', 'Aljazeera.com', 'Kathimerini', 'Mashable', 'Business Wire (press release)', 'The National', 'Al-Arabiya', 'Reuters via Yahoo! News', 'Techcrunch', "Pew Research Center's Internet and American Life Project", 'Financial Times', 'NBCNews.com', 'eNCA', 'CNN', 'Bloomberg via Yahoo! Finance', 'The Hindu', 'Digital Trends via Yahoo! Sports', 'CNBC', 'Kyiv Post', 'TASS', 'Ynetnews', 'Reuters via Yahoo! News', 'The Globe and Mail', 'Al-Monitor', 'Daily Kos', 'The Hereford Times', 'Palestine News Network', 'New York Times', 'The Wall Street Journal', 'The White House (blog)', 'Middle East Monitor', 'LAist', 'Associated Press via Yahoo! News', 'Washington Times', 'Aberdeen Press and Journal', 'Chicago Tribune', 'San Antonio Express-News (subscription)', 'The New Indian Express', 'Skift', 'Quartz', 'Toronto Star', 'Wareable', 'PCWorld', 'CCTV-America', 'Spectator.co.uk', 'Investopedia', 'Associated Press via Yahoo! News', 'fox2now.com', 'WAFA - Palestine News Agency', 'International Business Times', 'Palestine Herald Press', 'J-Wire Jewish Australian News Service', 'Voice of America', 'Asia Times', 'Seattle Times', 'Quartz', 'Fox News', 'euronews', 'BDlive', 'Yahoo Finance', 'NPR', 'Pakistan Today', 'American Thinker', 'Mediaite', 'The Hill', 'Al-Bawaba', 'The Bitbag', 'U.S. News & World Report', 'AppAdvice', 'AlterNet', 'PC Magazine', 'Wall Street Journal', 'MSPoweruser.com', 'CNBC via Yahoo! Finance', 'MacroBusiness (blog)', 'Greenfield Daily Reporter', 'AllAfrica.com', 'The Star', 'ZDNet', 'Winnipeg Free Press', 'Business Insider', 'MyTechBits', 'Belfast Telegraph', 'Roads and Kingdoms', 'Tempo', 'SlashGear', 'www.worldbulletin.net', 'Western Journalism', 'AllGov', 'AFP via Yahoo! India News', 'Mirror.co.uk', 'NBCNews.com', 'Business Wire via Yahoo UK & Ireland Finance', 'Express.co.uk', 'Mashable', 'New Vision', 'Liverpool Echo', 'The Register', 'New Republic', 'teleSUR English', 'Business Insider Australia', 'Daily News | The National Newspaper (press release) (blog)', 'PBS NewsHour', 'Haaretz', 'Washington Free Beacon', 'DunyaNews Pakistan', 'The Week Magazine', 'NEWS.com.au', 'Metrotvnews.com', 'Foreign Policy Journal', 'Bloomberg', 'Fox News', 'AFP via Yahoo! News', 'ZDNet', 'Greek Reporter', 'Investopedia', 'RT', 'BBC News', 'Black Enterprise', 'AFP via Yahoo! India News', 'TechRadar', 'Slate Magazine (blog)', 'Pakistan Today', 'The Japan Times', 'BBC News', 'The Inquisitr', 'Belfast Telegraph', 'Reuters via Yahoo Maktoob News', 'Express.co.uk', 'International Business Times via Yahoo UK & Ireland News', 'New York Times', 'SBS', 'VentureBeat', 'Sputnik International', 'Business Insider via Yahoo UK & Ireland Finance', 'FOX 2 News St. Louis', 'Daily Mail', 'Irish Independent', 'The New Zealand Herald', 'BizPac Review', 'Sputnik International', 'Motley Fool', 'The Guardian', 'Fox News Latino', 'CNBC', 'ARNnet', 'Associated Press via Yahoo! News', 'Reuters via Yahoo! Finance India', 'GamesRadar (blog)', '24/7 Wall St. via Yahoo! Finance', 'The Indian Express', 'Fox Business', 'The Wall Street Journal', 'Telegraph.co.uk', 'Economic Times', 'News & Observer (blog)', 'IB Times via Yahoo! Singapore News', 'Associated Press via Yahoo! News', 'Reuters via Yahoo! Finance', 'The Daily Star', 'CNN', 'WinBeta', 'The Star Online', 'The Hindu', 'Palestine Herald Press', 'Daily Press', 'The Wire', 'Christian Science Monitor via Yahoo! News', 'The West Australian via Yahoo!7 News', 'News24', 'NOLA.com', 'NBCNews.com', 'Nasdaq', 'Jacaranda FM', 'CBC.ca', 'Daily Caller', 'Ahram Online', 'MacNN', 'Yahoo Singapore News', 'NBCNews.com', 'The Advertiser', 'Bloomberg', 'Bristol Post', 'Washington Post', 'eTurboNews', 'Breitbart News', 'FrontPage Magazine', 'MENAFN', 'Mashable', 'Montana Standard', 'The Standard', 'Neowin', 'GamesRadar (blog)', 'Associated Press via Yahoo! News', 'Livemint', 'Northfield.org', 'Mondoweiss', 'Windows Report', 'Sputnik International', 'CNET', 'Vanguard', 'Slate Magazine (blog)', 'CNW Group via Yahoo! Finance', 'AllAfrica.com', 'Bloomberg', 'Los Angeles Times', 'Dallas Business Journal (blog)', 'AFP via Yahoo! India News', 'CIO', 'Washington Free Beacon', 'ABC Local', 'Palestine News Network', 'WinBeta', 'Jakarta Post', 'Mondoweiss', 'ForexLive', 'AFP via Yahoo! Finance', 'GhanaWeb', 'The Christian Post', 'Daily Post Nigeria', 'Phone Arena', 'Zimbabwe Independent', 'Realty Today', 'Economic Times', 'NEWS.com.au', 'NewsGhana.com.gh', 'Economic Times', 'CNBC', "Investor's Business Daily", 'ITBusiness.ca', 'Roll Call', 'Sputnik International', 'New York Post', 'ABC Online', 'The Australian Financial Review', 'Daily Caller', 'Market Realist', 'Bloomberg via Yahoo!7 Finance', 'T.H.E. Journal', 'Seeking Alpha', 'VentureBeat', 'Washington Times', 'Associated Press via Yahoo! Finance', 'TechRadar', 'Business Insider via Yahoo! India News', 'Fox News', 'ABC News', 'Economic Times', 'WMUR Manchester', 'Forbes', 'Wall Street Journal (blog)', 'Washington Free Beacon', 'StreetAuthority Network via Yahoo! Finance', 'CNBC', 'BMWBLOG (blog)', 'Reuters', 'TechRadar', 'NBCNews.com', 'PanARMENIAN.Net', 'Details', 'Bloomberg', 'Daily Mail', 'Yahoo News', 'Sydney Morning Herald', 'CNN', 'Wall Street Journal', 'Fox News', 'Thurrott.com (blog)', 'FXStreet', 'TechTarget', 'The Register', 'The Northern Echo (registration)', 'Hot Air', 'Viet Nam News', 'Tyler Morning Telegraph', 'The Rock Hill Herald', 'Bloomberg via Yahoo! Finance', 'STLtoday.com', nan, 'WCVB Boston', 'The Star', 'The Arctic Journal', 'Daily Telegraph', 'Wall Street Journal', 'Vox', 'E! Online', 'Sky News via Yahoo Canada News', 'USA TODAY', 'Motley Fool', 'CNBC', 'BT.com', 'People Magazine', 'Whitehouse.gov (press release)', 'NBC NEWS', 'AllAfrica.com', 'Daily Mail', 'ABC News', 'GameSpot', 'BusinessWorld Online Edition', 'Reuters India', 'WABC-TV', 'Yahoo Food', 'Stuff.co.nz', 'Calgary Sun', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'MIS Asia', 'WJBF-TV', 'Financial Times', 'MyBroadband', 'VOA News', "Crain's Detroit Business", 'Daily Signal', 'The Weekly Standard (blog)', 'Bloomberg', 'Palestine News Network', 'Foreign Policy (blog)', 'Bloomberg', 'International New York Times', 'CTV News', 'Bloomberg', 'Media Matters for America', 'Aljazeera.com', 'Quartz', 'Huffington Post', 'Computerworld', 'Bloomberg', 'MIS Asia', 'Wall Street Journal', 'Reuters via Yahoo! Finance', 'CRN', 'Digital Trends via Yahoo! Finance', 'Herald & Review', 'Sputnik International', 'The Globe and Mail (subscription)', 'Western Journalism', 'South Bend Tribune', 'Politico', 'Press of Atlantic City', 'TheStreet.com', 'IGN', 'Press TV', 'AllAfrica.com', 'CCTV-America', 'The Record', 'Port Huron Times Herald', 'MIS Asia', 'Bloomberg', 'Mintpress News (blog)', 'The Detroit News', 'Reuters UK', 'International Business Times', 'FXStreet', 'Hot Air', 'Business Insider', 'Softpedia News', 'Timesonline.com', 'TASS', 'Fast Company', 'PCGamesN', 'KPAX-TV', 'The Globe and Mail', 'Entertainment Weekly', 'Breitbart News', 'Nasdaq', 'Telegraph.co.uk', 'Zacks via Yahoo Canada Finance', 'Los Angeles Times', 'Bloomberg', 'Reuters UK', 'Center for Research on Globalization', nan, 'The Canadian Press via Yahoo Canada News', 'WDSU New Orleans', 'Sioux City Journal', 'The Echo', 'Citizen', 'TPM', 'Emirates 24|7', 'The Star', 'Breitbart News', 'New Straits Times Online', 'Middle East Monitor', 'Bloomberg', 'Associated Press via Yahoo! Singapore News', 'Times of India', 'Kotaku Australia', 'TechRadar', 'Fortune', 'Reuters', 'The Business Times Singapore', 'ZDNet', 'gulfnews.com', 'Sacramento Bee', 'MCV', 'Los Angeles Times', 'ABC News', 'Reuters', 'The Fiscal Times via Yahoo UK & Ireland Finance', 'The Hindu', 'FOX43.com', 'The Business Times Singapore', 'Times Colonist', 'Council on Foreign Relations', 'Redmond Channel Partner', 'Daily Caller', 'Toronto Star', 'Dallas Morning News', 'The New American', 'Associated Press via Yahoo!7 Finance', 'The Fiscal Times via Yahoo! Finance', 'South African Broadcasting Corporation', 'Quartz', 'Market Realist via Yahoo UK & Ireland Finance', 'Foreign Affairs', 'Malay Mail Online', 'Washington Post', 'The Guardian', 'CBS 2 Los Angeles', 'Palestine Herald Press', 'Today.com', 'Al Jazeera via Yahoo Maktoob News', 'TechEye', 'Amigobulls', 'FrontPage Magazine', 'Budapest Business Journal', 'Washington Free Beacon', 'The Local Denmark', 'TechCrunch', 'Palestine Herald Press', 'The Lawton Constitution', 'Thurrott.com (blog)', 'Market Realist', 'Hindustan Times', 'Chicago Daily Herald', 'Reuters', 'Business Insider', 'Market Realist via Yahoo! Finance', 'Reuters - UK Focus via Yahoo UK & Ireland Finance', 'Philippine Star', 'Consequence of Sound (blog)', 'The Guardian', 'AFP via Yahoo! New Zealand News', 'Himalayan Times', 'New Jersey 101.5 FM Radio', 'Reuters via Yahoo! News', 'AFP Relax News via Yahoo! News', 'MetroNews Canada', 'Nasdaq', 'The Hill (blog)', 'Daily Signal', 'MacNN', 'Bloomberg', 'The Guardian', 'GoldSeek.com', 'Seeking Alpha', 'Bloomberg via Yahoo! Finance', 'Acton Institute (blog)', 'The Gazette', 'Peru this Week', 'Economic Times', 'Reuters via Yahoo! Finance', 'Financial Times', 'International Business Times UK', 'China Post', 'Asharq Al-awsat English', 'Phys.Org', 'Financial Times', 'ABC News', 'Nikkei Asian Review', 'Free Malaysia Today', 'Outlook India', 'PolitiFact', 'NPR', 'NBC NEWS', 'News On 6 Tulsa', 'WCCFtech', 'The Standard Digital News (press release) (blog)', 'Fortune', 'The Southern', 'The Financial Express via Yahoo! Finance India', 'Newcastle Herald', 'Economic Times', 'Vox', 'Reuters via Yahoo! Finance', 'Bloomberg', 'The Star Online', 'Wall Street Journal', 'The National', 'Chicago Tribune', 'SiliconANGLE', 'Sky News', 'Hong Kong Standard (press release)', 'Firstpost', 'The Australian', 'Phys.Org', 'New York Times', 'Reuters via Yahoo! Finance', 'Forbes', 'AFP via Yahoo! News', 'PC World', 'Fortune', 'Daily Mail', 'Daily Mail', 'Jordan Times', 'Beaumont Enterprise', 'AFP via Yahoo! News', 'Intifada Palestine', 'The Canadian Press via Yahoo Canada News', 'Eater', 'RenewEconomy', 'Daily Caller', 'Slate Magazine', 'Redmondmag.com', 'CNSNews.com (blog)', 'Sputnik International', 'The Australian (subscription) (blog)', 'The Wall Street Journal', 'AFP via Yahoo! News', 'Washington Post', 'KTAR.com', 'Fox Sports', 'BreakingNews.ie', 'USA TODAY', 'WinBeta', 'MSPoweruser.com', 'Computer World Australia', 'AFP via Yahoo! News', 'NPR', 'The Australian Financial Review', 'Tempo.co', 'ESPN', 'New York Post', 'UPI.com', 'Channel NewsAsia', 'Telegraph.co.uk', 'The Hill', 'The Canadian Press via Yahoo Canada News', 'BetaNews', 'Forbes', 'Financial Times', 'Vanguard', 'News3LV', 'Business Standard', 'Bloomberg', 'TIME', 'Nasdaq', 'TIME', 'The Motley Fool', 'Bloomberg', 'Sky News via Yahoo UK & Ireland Finance', 'Business Wire via Yahoo! Finance', 'BBC Sport', 'AFP via Yahoo!7 Finance', 'NPR', 'Traveller', 'Daily Caller', 'ZDNet', 'Times of India', 'BBC News', 'Channel News Asia', 'Neowin', 'Fox Business', 'Washington Times', 'Charleston Post Courier', 'Washington Post', 'Economic Times', 'MSPoweruser.com', 'Mediaite', 'BetaNews', 'IANS via Yahoo Maktoob News', 'Stuff', 'EurActiv', 'Inquirer.net', 'CNN', 'Los Angeles Times', 'WinBeta', 'Tech2', 'nwitimes.com', 'Business Insider', 'The Economist', 'Orlando Sentinel', 'The Christian Post', 'CTV News', 'The Nation', 'Reuters', 'Firstpost', 'Common Dreams (press release)', 'CRN', 'KTRE', 'Valley News', 'Palestine Herald Press', 'Bloomberg', 'Sydney Morning Herald', 'Live 5 News Charleston', 'The Register', 'RFI', 'Wall Street Journal', 'Forbes', 'IANS via Yahoo Maktoob News', 'KOCO Oklahoma City', 'The Verge', 'Detroit Free Press', 'WNDU-TV', 'The Hindu', 'Le Figaro', 'USA TODAY', 'CNBC', 'Globalnews.ca', 'AllAfrica.com', 'ZDNet', 'Washington Times', 'Seeking Alpha', 'The Times (subscription)', 'StepFeed', 'Microsoft - Channel 9', 'WinBeta', 'News18', 'Associated Press via Yahoo! News', 'Daily Caller', 'Hollywood Reporter', 'The Tennessean', 'New York Post', 'TV Guide (blog)', 'The Guardian', 'TeenVogue.com', 'KEYE TV', 'Scoop.co.nz', 'EMQ', 'Tyler Morning Telegraph', 'TPM', 'Eyewitness News', 'The National Law Review', 'CBC via Yahoo Canada News', 'Tempo.co', 'PC World', 'Huffington Post', 'The Express Tribune', 'Krebs on Security', 'Business Insider via Yahoo! Finance', 'The West Australian via Yahoo!7 News', 'AFP News via Yahoo! Singapore News', 'Denver Post', 'Al-Monitor', 'Bloomberg', 'People Magazine', 'CBS Baltimore', 'Washington Post', 'Business Standard India', 'Press-Enterprise', 'TASS', 'Mashable', 'Philippine Star', 'Chron.com', 'CNBC', 'azcentral.com', 'Whitehouse.gov (press release)', 'Al Jazeera via Yahoo Maktoob News', 'FT.com (blog)', 'Business Insider', 'PC Magazine', 'PC World', 'The Globe and Mail (subscription)', 'NewsFactor Network', 'BetaNews', 'New York Times', 'Firstpost', 'Fox News', 'ABC 7 Gulfshore News', 'AFP via Yahoo! News', 'The Daily Star', 'The Canadian Press via Yahoo Canada News', 'The National', 'Eurasia Review', 'Thomson Reuters Foundation', 'The Guardian', 'Computing', 'Moneycontrol.com', 'Market Watch', 'Wall Street Journal', 'TheStreet.com', 'SuperSite for Windows', 'Reuters via Yahoo! News', 'Daily Mail', 'Beef Magazine (blog)', 'Jerusalem Post Israel News', 'EJ Insight', 'Forbes', 'U.S. News & World Report', 'Minneapolis Star Tribune', 'Daily Post Nigeria', 'Politico', 'Business Insider', 'Local 10', 'Digital Trends via Yahoo! News', 'Small Business Trends', 'ZDNet', '680 News', 'Associated Press via Yahoo! News', 'Forbes', 'Daily Caller', 'The Japan Times', 'New York Post', 'gamesindustry.biz', 'WMBF News Myrtle Beach', 'InformationWeek', 'The Point Review', 'Bloody Disgusting', 'Associated Press via Yahoo! News', 'iMediaEthics', 'Daily Mail', 'Tehran Times', 'WinBeta', 'Jakarta Post', 'Reuters', 'International Business Times UK', 'FOX 2 News St. Louis', 'Tucson Weekly', 'Yahoo Finance', 'Reuters via Yahoo UK & Ireland News', 'TASS', 'NEWS.com.au', 'ARNnet', 'Forbes', 'Reuters via Yahoo! News', 'CTV News', 'CNBC', 'Quartz', 'South China Morning Post (subscription)', 'The Register', 'IANS India Private Limited/Yahoo India News via Yahoo! Singapore News', 'Inquirer', 'Bloomberg', 'The New Yorker (satire)', 'Malta Independent Online', 'ABC 7 Gulfshore News', 'Bloomberg View', 'Vox', 'Washington Post', 'PC Magazine', 'Financial Times', 'BetaNews', 'Financial Times', 'Fortune', 'The Moscow Times (registration)', 'Recorderpost.com (satire) (registration) (blog)', 'The Business Times Singapore', 'Reason (blog)', 'Business Insider via Yahoo! India News', 'South Bend Tribune', 'NDTV', 'People Magazine', 'InformationWeek', 'New York Magazine', 'Freestonecountytimesonline', 'Nasdaq', 'American Thinker (blog)', 'National Post', 'Windows Central', 'www.worldbulletin.net', 'Richmond Times-Dispatch', 'Los Angeles Times', 'Newsweek', 'American Thinker', 'RTE News', 'StepFeed', 'Daily Caller', 'The Hill', 'Reuters', 'Honolulu Star-Advertiser', 'IANS via Yahoo Maktoob News', 'Rappler', 'NEWS.com.au', 'Thurrott.com (blog)', 'FXStreet', 'Lifehacker Australia', 'Jackson Clarion Ledger', 'Money Marketing', 'www.worldbulletin.net', 'Palestine Herald Press', 'WinBeta', 'The Verge', 'The Huffington Post', 'NAIJ.COM', 'Richmond Times-Dispatch', 'BBC News', 'Business Insider', 'Washington Examiner', 'Jerusalem Post Israel News', 'WinBeta', 'AFP via Yahoo! India News', 'Investorplace.com', 'Above the Law', 'Forbes', 'Chicago Tribune', 'Fox News Latino', 'Fortune', 'CNBC', 'CNN', 'CRN - UK', 'The Washington Times', 'Firstpost', 'kpfa 94.1fm', 'The Fiscal Times via Yahoo! News', 'Center for Research on Globalization', 'MENAFN', 'Med Device Online (press release)', 'E-Commerce Times', 'Washington Free Beacon', 'CNBC', 'Reuters Canada', 'YNaija', 'CIO', 'Canoe', 'Videogamer.com', 'Edmonton Journal', 'The Washington Times', 'Wall Street Journal', 'WinBeta', 'Bloomberg', 'NDTV', 'Daily Mail', 'The Hill', 'Livemint', 'Business Insider', 'The Guardian', 'Washington Free Beacon', 'Egypt Independent', 'SlashGear', 'MENAFN', 'Financial Times', 'IANS India Private Limited via Yahoo! India News', 'Asbury Park Press', 'Marketwired via Yahoo! Finance', 'Reuters UK', 'TechCrunch', 'CBS News', 'American Spectator', 'info komputer', 'Wall Street Journal (blog)', 'LifeNews.com', 'Coast Reporter', 'Reuters Canada', 'Fortune', 'Business Insider', 'Business Insider Australia', 'CNN', 'Times of India', 'The Australian Financial Review', 'TechNewsWorld.com', 'CBS News', 'Thurrott.com (blog)', 'Waco Tribune-Herald', 'PCWorld', 'Oilprice.com via Yahoo! Finance', 'AFP via Yahoo! News', 'TASS', 'Los Angeles Times', 'Science Magazine', 'WND.com', 'THV11.com', 'The Rock Hill Herald', 'MSPoweruser.com', 'The Seattle Times', 'AFP via Yahoo UK & Ireland News', 'New York Post', 'AsiaOne', 'TPM', 'Reuters via Yahoo! News', 'Ghacks Technology News', 'The Business Times Singapore', 'The Nation.', 'Firstpost', 'Hellenic Shipping News Worldwide', 'Washington Post', 'Press Association via Yahoo UK & Ireland News', '24/7 Wall St.', 'Good Morning America via Yahoo! News', 'Middle East Monitor', 'Sputnik International', 'Washington Times', 'Bitcoinist.net', 'KTOO', 'Reuters via Yahoo! Finance', 'International Business Times', 'Daily Beast', 'Fortune', 'Breitbart News', 'ValueWalk', 'AFP via Yahoo! News', 'The Atlantic', 'ValueWalk', 'ZDNet', 'The Star', 'Reason (blog)', 'Utah Business', 'Bloomberg', 'FXStreet', 'Reuters - UK Focus via Yahoo UK & Ireland Finance', 'Economic Times', 'Newsmax', 'Sudan Tribune', 'Wall Street Journal', 'ARNnet', 'Economic Times', 'Associated Press via Yahoo! Singapore Sports', 'Huffington Post', 'NBCNews.com', 'Hot Air', 'Voice of America', 'Re/code', 'MSPoweruser.com', 'Business Insider', 'TechRadar', 'Wall Street Journal Blogs', 'CBC.ca', 'The Canadian Press via Yahoo Canada News', 'RT', 'Associated Press via Yahoo! Finance', 'SFGate', 'Observer', 'RTE.ie', 'Eagle-Tribune', 'MSDynamicsWorld.com', 'Reuters via Yahoo! Finance', 'The Globe and Mail (subscription)', 'Canada Free Press', 'www.worldbulletin.net', 'Minneapolis-St. Paul Star Tribune', 'The Mercury News', "Today's Zaman", 'AnandTech', 'Amigobulls', 'Hindu Business Line', 'Business Insider', 'AFP via Yahoo! India News', 'The Sunday Times', 'Intifada Palestine', 'BBC News', 'NDTV', 'Sharecast via Yahoo UK & Ireland Finance', 'Western Journalism', 'Motley Fool', 'New York Times', 'iPolitics.ca (subscription)', 'The Guardian', 'MTV.com', 'AFP via Yahoo! News', 'Marketwired via Yahoo! Finance', 'Bloomberg', 'Business Insider Australia', 'Intifada Palestine', 'Right Wing Watch', 'Marlborough Express', 'Bangkok Post', 'MarketWatch', 'MENAFN', 'The Seattle Times', 'MarketWatch', 'AllAfrica.com', 'The Herald-Times (subscription)', 'New York Times', 'New York Daily News', 'Road to VR', 'CTV News', 'Forbes', 'STRATFOR', 'Bloomberg', 'Wall Street Journal', 'RealClearPolitics', 'The Globalist', 'AFP Relax via Yahoo! Philippines News', 'FrontPage Magazine', 'AllAfrica.com', 'Reuters via Yahoo! News', 'Gizmodo', 'Bloomberg', 'KRQE & KASA FOX 2 Albuquerque', 'Sin Chew Jit Poh', 'The Wall Street Journal', 'N4BB', 'Redmond Channel Partner', 'The National', 'The Christian Science Monitor', 'Nasdaq', 'OilPrice.com', 'McClatchy Washington Bureau', 'Washington Post', 'Washington Free Beacon', 'U.S. News & World Report', 'San Jose Mercury News', 'USA TODAY', 'San Bernardino County Sun', 'The Seattle Times', 'VICE News', 'Barre Montpelier Times Argus', 'The Independent', 'The Punch', 'Newsmax', 'Business Insider', 'PJ Media', 'WRAL.com', 'The Intercept', 'Washington Post', 'CNBC', 'Gizmag', 'MSPoweruser.com', 'Irish Times', 'International Business Times UK', 'gulfnews.com', 'thejournal.ie', 'Computerworld', "Investor's Business Daily", 'Wall Street Journal', 'Market Watch', 'Yahoo Finance', 'Bloomberg', 'Breitbart News', 'ABC News', 'PCWorld', 'NBC NEWS', 'New Zealand Herald', 'The Punch', 'Jerusalem Post Israel News', 'Waterloo Record', 'eMarketer', 'The Verge via Yahoo Canada News', 'Bloomberg', 'The Globe and Mail (subscription)', 'Reuters via Yahoo! India News', 'ABC News', 'CNET', 'Motherboard', 'CNN Money', 'Vanguard', 'Center for Research on Globalization', 'Newsweek', 'The Register', 'gulfnews.com', 'New York Times', 'TASS', 'New York Times', 'AFP via Yahoo! News', 'Digital Trends via Yahoo! Sports', 'Middle East Online', 'Free Malaysia Today', 'Financial Times', 'Daily Mail', 'Ahram Online', 'Fox News', 'New Europe', 'Gizmodo', 'American Thinker (blog)', 'euronews', 'eWeek', 'Bloomberg via Yahoo! New Zealand Finance', 'Daily Mail', 'Inquirer', 'Huffington Post', 'WND.com', 'Sydney Morning Herald', 'Yahoo News', 'FXStreet', 'OilPrice.com', 'Sydney Morning Herald', 'Macleans.ca', 'AFP via Yahoo! News', 'Associated Press via Yahoo UK & Ireland News', 'OilPrice.com', 'CNN', 'Reuters via Yahoo Canada News', 'The Economic Times', 'ABC News', 'CNN', 'TWCN Tech News (blog)', 'Arab News', 'AFP News via Yahoo! Philippines News', 'Media Matters for America (blog)', 'Palestine Herald Press', 'Financial Times', 'Contra Costa Times', 'Mondoweiss', 'Hellenic Shipping News Worldwide', 'New York Review of Books', 'MIS Asia', 'Socialist Worker Online', 'NerdWallet (blog)', 'CNN', 'Digital Trends via Yahoo! Sports', 'The Local.de', 'Sioux Falls Argus Leader', 'NPR', 'Arizona Capitol Times', 'Bloomberg', 'The National', 'Business Insider', 'Mother Jones', 'Wall Street Journal (blog)', 'The Hill (blog)', 'Jerusalem Post Israel News', 'ChristianToday', 'The Globe and Mail (subscription)', 'Fox News', 'IANS via Yahoo Maktoob News', 'Bloomberg', 'Nikkei Asian Review', 'U.S. News & World Report', 'Washington Post', 'NPR', 'U.S. News & World Report', 'CNN International', 'Huffington Post (blog)', 'BetaNews', 'Middle East Eye', 'FXStreet', 'Fox News', 'Reuters UK', 'VentureBeat', 'New York Daily News', 'Reuters Middle East via Yahoo Maktoob News', 'MSPoweruser.com', 'Manila Bulletin', 'Economic Times', 'Red Alert Politics', 'The Wall Street Journal', 'InformationWeek', 'CNBC', 'Reuters', 'The Hill', 'gulfnews.com', 'ThinkProgress', 'Firstpost', 'FXStreet', 'Engadget', 'The Australian (subscription)', 'The Independent', 'WinBeta', 'Reuters via Yahoo! News', 'New York Times', 'WBEZ 91.5 Chicago', 'AL.com', 'www.worldbulletin.net', 'SaharaReporters.com', 'Channel 8 San Diego', 'Opposing Views', 'BBC News', 'CNBC', 'ZDNet', 'ABC Online', 'ABC News', 'The Libertarian Republic', 'Seeking Alpha', 'New York Post', 'Stuff.co.nz', 'Breitbart News', 'Press TV', 'TechRadar', 'Economic Times', 'Toronto Star', 'TechTarget', 'Fortune', 'CNBC', 'Palestine News Network', 'Times of Malta', 'Pensacola News Journal', 'RenewEconomy', 'ETTelecom.com', 'Saudi Gazette', 'KPBS San Diego', 'CNN.com', 'Morning Journal News', 'Reuters via Yahoo UK & Ireland News', 'The Times of Israel', 'Middle East Eye', 'Associated Press via Yahoo!7 Finance', 'Daily Mail', 'CNN', 'Associated Press via Yahoo Maktoob News', 'The Register', 'Washington Times', 'TASS', 'Huffington Post Canada', 'TASS', 'Al Jazeera America', 'Bloomberg', 'Town Hall', 'Indie Wire (blog)', 'Digital Trends via Yahoo! News', 'The Atlantic via Yahoo UK & Ireland News', 'Kathmandu Post', 'Inc.com', 'Associated Press via Yahoo UK & Ireland News', 'Herald Scotland', 'VOA Ting Vit', 'The Hill', 'Bloomberg via Yahoo! Finance', 'Management Today', 'Allentown Morning Call', 'UTV Ireland (blog)', 'The Hindu', 'WN Philippines', 'New York Times', 'ZDNet', 'Sudan Tribune', 'Mother Jones', 'Reuters UK', 'Reuters', 'SiliconANGLE', 'Denver Post', 'Daily Mail', 'Idaho Statesman', 'The Wall Street Journal', 'DAWN.com', 'Middle East Eye', 'GeekWire', 'Daily Mail', 'MSPoweruser.com', 'Wall Street Journal', 'Wall Street Journal', 'Digital Trends via Yahoo! News', 'Telegraph via Yahoo UK & Ireland Finance', 'The Conversation AU', 'mySanAntonio.com', 'CNET', 'Nasdaq', 'Zacks via Yahoo! Finance', 'CBS News', 'Al Jazeera via Yahoo UK & Ireland News', 'Windows Central', 'Philippine Star', 'The New Civil Rights Movement', 'The Weather Channel', 'Reuters via Yahoo! Philippines News', 'CNBC', 'CNBC', 'AFP via Yahoo! India News', 'R & D Magazine', 'Washington Times', 'CNNMoney', 'Business Standard India', 'ComputerWeekly.com', 'Digital Trends', 'KABC-TV', 'Tech Insider via Yahoo UK & Ireland News', 'IJ Review', 'CNET', 'Fox News Latino', 'PC Advisor', 'CNN.com', 'The Recorder', 'KTRE Lufkin and Nacogdoches', 'Arab Times Kuwait English Daily', 'Vox', 'ABC News', 'Business Insider', 'Baltimore Sun', 'USA TODAY', 'News On 6', 'Irish Mirror', 'Reuters via Yahoo Maktoob News', 'WinBeta', 'Los Angeles Times', 'Associated Press via Yahoo!7 Finance', 'ESPN', 'WebProNews', 'WinBeta', 'CNBC', 'NK News', 'CNN', 'The Independent', 'Minneapolis-St. Paul Star Tribune', 'InfoWorld', 'Daily Mail', 'Yahoo News', 'Economic Times', 'KLTV 7 Tyler', 'Breitbart News', 'Financial Post', 'PC World', 'MSNBC', 'CBS News', 'Wall Street 24', 'Lifesite', 'ValueWalk', 'RTT News', 'TheStreet.com', 'Windows Central', 'Thurrott.com (blog)', 'The Hill', 'China Daily', 'Neowin', 'Reuters', 'YouGov US', 'TheJournal.ie via Yahoo UK & Ireland News', 'teleSUR English', 'Al-Monitor', 'Express.co.uk', 'Insurance Journal', 'ZDNet', 'Newsmax', 'Business Wire via Yahoo! Finance', 'Fleetwood Today', 'Power Line (blog)', 'The Guardian', 'TheBlaze.com', 'Washington Post', 'Huffington Post', 'Scoop.co.nz', 'NT News', 'GameSpot via Yahoo! News', 'Exchange News Direct', 'Sputnik International', 'Reuters Canada', 'Channel News Asia', 'Associated Press via Yahoo! News', 'AFP via Yahoo! Sports', 'RT', 'The Canadian Press via Yahoo Canada Finance', 'Softpedia News', 'UN News Centre', 'Denver Post', 'The Columbian', 'MarketWatch', 'www.worldbulletin.net', 'Reuters', 'Los Angeles Times', 'Channel NewsAsia', 'Daily News & Analysis', 'ABC News', 'Seattle Times', 'Shanghai Daily (subscription)', 'New Kerala', 'CBC via Yahoo Canada News', 'Associated Press via Yahoo! Finance', 'TODAYonline', 'CNET', 'Reuters via Yahoo! News', 'Reuters via Yahoo! News', 'Memeburn', 'Yahoo Sports (blog)', 'CBC.ca', 'The Jewish Journal of Greater Los Angeles', 'Nasdaq', 'The Australian (subscription)', 'MIS Asia', 'Contra Costa Times', 'Christian Today', 'The Fiscal Times', 'www.worldbulletin.net', 'ABC News', 'The Australian Financial Review', 'RCR Wireless News', 'CBS News', 'YES! Magazine', nan, 'Economic Times', 'VOA News', 'Dhaka Tribune', 'ZDNet', 'WRAL.com', 'Bloomberg via Yahoo UK & Ireland Finance', 'Al-Bawaba', 'The Hill', 'The Verge via Yahoo! News', 'Haaretz Daily', 'The Wall Street Journal', 'Fortune', 'TechRadar', 'The Hindu', 'Bloomberg', 'WPVI 6abc Philadelphia', 'NewsFactor Network', 'Firstpost', 'Business Standard (press release) (registration) (blog)', 'IANS via Yahoo Maktoob News', 'The Hill', 'Minneapolis Star Tribune', 'ABC News', 'Reuters', 'Business 2 Community', 'PC Advisor', 'WRDW-TV', 'Times of India', 'GQ.com', 'Deccan Chronicle', 'ABC News', 'Los Angeles Times', 'MarketWatch', 'New York Times', 'Hellenic Shipping News Worldwide', 'Reuters via Yahoo! Finance', 'Religion News Service', 'AsiaOne', 'Business Insider via Yahoo! Finance', 'Reuters UK', 'New York Post', 'CNET', 'The Atlantic', 'Washington Post', 'Jacobin magazine', 'Bloomberg', 'Himalayan Times', 'New York Post', 'TIME', 'BruDirect.com', 'Neurogadget', 'Fortune', 'ZDNet', 'AllAfrica.com', 'WinBeta', 'NPR', 'Reuters', 'Marketwired via Yahoo! Finance', 'Gizmodo', 'Myrtle Beach Sun News', 'AsiaNews.it', 'Palestine News Network', 'AAP via Yahoo! New Zealand News', 'U.S. News & World Report', 'Charlotte Business Journal (blog)', 'Channel News Asia', 'The Straits Times', 'The Financial Express via Yahoo! Finance India', 'Whitehouse.gov (press release)', 'AsiaNews.it', 'Greek Reporter', 'GeekWire', 'Business Wire (press release)', 'Expert Reviews', 'Associated Press via Yahoo! News', 'Al-Bawaba', 'Associated Press via Yahoo! News', 'Digital Trends via Yahoo! Sports', 'Business Insider via Yahoo! Finance', 'Deadline', 'CNBC', 'The Hindu', 'Washington Post', 'www.worldbulletin.net', 'Yahoo News via Yahoo! News', 'Huffington Post', 'The Hill', 'Voice of America', 'Jakarta Post', 'NBCNews.com', 'MIT Technology Review', 'Common Dreams (press release)', 'Refinery29', 'Mirror.co.uk', 'Reuters', 'AFP via Yahoo UK & Ireland News', 'Thurrott.com (blog)', 'Windows IT Pro', 'New York Daily News', 'Huffington Post', 'ZDNet', 'Los Angeles Times', 'The Washington Times', 'CBS News', 'gulfnews.com', 'Green Car Reports', 'CNN Money', 'Pew Research Center', 'The San Diego Union-Tribune', 'International Business Times UK', 'NBCNews.com', 'IPWatchdog.com', 'PC World', 'Seattle Times', 'Slate Magazine (blog)', 'Al-Monitor', 'Bloomberg', 'Sydney Morning Herald', 'Motley Fool', 'ABC News', 'Reuters', 'The ', 'Trend News Agency', 'Palestine Herald Press', 'Newsy', 'Washington Examiner', 'Huffington Post', 'Bloomberg', 'PR Newswire (press release)', 'Brandon Sun', 'Valley News', 'BBC News', 'malaysiandigest.com', 'Jerusalem Post Israel News', 'The Canadian Press via Yahoo Canada News', 'Philly.com', 'NPR', 'CNBC', 'Forbes', 'Gamenguide', 'Quartz', 'Carlsbad Current-Argus', 'CRN - UK', 'Boing Boing', 'Bloomberg', 'Daily News Egypt', 'The Independent', 'Outlook India', 'The Borneo Post', 'RollingStone.com', "Investor's Business Daily", 'Scotsman', 'The Business Times Singapore', 'South China Morning Post (subscription)', 'Palestine Herald Press', 'Fortune', 'CBC.ca', 'Orlando Business Journal', 'Risers & Fallers', 'Pittsburgh Business Times (blog)', 'Times of India', 'The Guardian', 'Fox17', 'Wonkette (satire) (blog)', 'Techcrunch', 'Palestine Herald Press', 'Telegraph.co.uk', 'KXXV Waco', 'Manila Bulletin', 'The Christian Science Monitor', 'Financial Times', 'NDTV', 'Thomson Reuters Foundation', 'AsiaOne', 'New York Magazine', 'This is Money', 'CPI Financial', 'Engadget', 'The National', 'Bloomberg', 'Sputnik UK', 'Bloomberg', 'Metrotvnews.com', 'International Business Times AU', 'Economic Times', 'NJ.com', 'International Business Times', 'MSPoweruser.com', 'Irish Times', 'Breitbart News', 'New Kerala', 'AFP via Yahoo! News', 'TRT World', 'ABC News', 'Daily Mail', 'Harvard Business Review', 'CNBC', 'Ars Technica', 'Huffington Post', 'Motley Fool', 'MIS Asia', 'TechCrunch', 'Daily Beast', 'Politico', 'Thurrott.com (blog)', 'Huffington Post', 'The Nation', 'Thomson Reuters StreetEvents via Yahoo! Finance', 'American Thinker (blog)', 'USA TODAY', 'GhanaWeb', 'Mediaite', 'TheBlaze.com', 'GazetteUnion,com (blog)', 'The Straits Times', 'Politico (blog)', 'Reuters', 'CounterPunch', 'WinBeta', 'NPR', 'ABC News', 'Philly.com', 'Engadget', 'Japan Today', 'The Wall Street Journal', 'Sky News Australia', 'Business Insider via Yahoo! Finance', 'The Boston Globe', 'Financial Express', 'Channel NewsAsia', 'Business Recorder (press release) (registration) (blog)', 'Eyewitness News', 'ABC Online', 'Business Insider', 'NPR', 'Thomson Reuters Foundation', 'Politico', 'V3.co.uk', 'Savannah Morning News', 'Digital Trends via Yahoo! Sports', 'Salon', 'ZDNet', 'Reuters via Yahoo! Finance', 'Fox Business', 'Business Insider', 'Bernama', 'Huffington Post', 'New York Post', 'Astana Times', 'The Province', 'AFP via Yahoo! News', 'The Sarasota Herald-Tribune', 'Android Police', 'Wall Street Journal (blog)', 'The Columbian', 'The Verge', 'International Business Times', 'CIO', 'Financial Times', 'Seattle Times', 'TASS', 'ABC News', 'BBC News', 'CBC.ca', 'New York Times', 'EconoTimes', "Today's Zaman", 'The Guardian', 'The Times (subscription)', 'JP Updates', 'The Fresno Bee', 'CNN', 'Crowdsourcing.org', 'eWeek', 'Bournemouth Echo', 'CBC.ca', 'Sputnik International', 'The Next Web', 'USA TODAY', 'VentureBeat', 'Reuters', 'SDTimes.com', 'FierceCIO', 'NDTV', 'Irish Independent', 'Press Herald', 'The Globe and Mail (subscription)', 'WGAL 8 Susquehanna Valley', 'Jakarta Post', 'The Hindu', 'Eyewitness News', 'Jordan Times', 'Wall Street Journal', 'Baytown Sun', 'SalemNews.net', 'The ', 'CSO Online', 'Politico', 'Breaking Israel News', 'FXStreet', 'AltEnergyMag (press release)', 'CNBC via Yahoo! New Zealand Finance', 'TechTarget', 'Independent Reporter', 'Financial Director', 'Hollywood Reporter', 'Windows Central', 'Bloomberg', 'Gamasutra', 'International New York Times', 'Yahoo News', 'The Chronicle Herald', 'Jacksonville Daily Progress', 'fox2now.com', 'Marketwired via Yahoo UK & Ireland Finance', 'Digital Trends via Yahoo! News', 'Sputnik International', 'MIS Asia', 'The New School News (blog)', 'SiliconIndia', 'Computer World Australia', 'AFP via Yahoo! New Zealand News', 'NanoNews (blog)', 'Bob Sullivan.net', 'Reuters via Yahoo! News', 'The Borneo Post', 'Focus News', 'TheBlaze.com', 'Telegraph.co.uk', 'Breitbart News', 'The Standard Digital News (satire) (press release) (registration) (blog)', 'Tempo.co', 'The Huffington Post', 'Engadget', 'Express.co.uk', 'Firstpost', 'MIS Asia', 'ABC Montana', 'snopes.com', 'Page Six', 'Phys.Org', 'POLITICO Magazine', 'Slate Magazine (blog)', 'The Japan Times', 'Financial Times', 'WinBeta', 'Tech Times', 'KGO-TV Bay Area', 'WCVB Boston', nan, 'Business Wire (press release)', 'Bloomberg', 'Reuters via Yahoo! Finance', 'Mediaite', 'Times of India', 'GhanaWeb', 'Reuters via Yahoo! Finance', 'CNN Money', 'KABC-TV Los Angeles', 'Quartz', 'Local 8 Now', 'Associated Press via Yahoo! News', 'Tyler Morning Telegraph', 'Thurrott.com (blog)', 'The Hill', 'New York Times', 'Lifehacker Australia', 'WKRG News 5 Mobile', 'Asharq Alawsat', 'Stuff.co.nz', 'Business Recorder', 'Breitbart News', 'EurActiv', 'Business 2 Community', 'Reuters via Yahoo! Finance', 'New York Times', 'Bloomberg', 'The Herald', 'AFP via Yahoo! Finance', 'ABC Online', 'Gladstone Observer', 'FXStreet', 'Palestine News Network', 'CIO', 'The Christian Times', 'TechRadar', 'WNBA.com', 'The Register', 'The Inquisitr', 'International Middle East Media Center', 'PC World', 'The Canadian Press via Yahoo Canada News', 'The Hill', 'The San Diego Union-Tribune', 'gulfnews.com', 'The Cherokeean Herald', 'Daily Caller', 'The Washington Times', 'The Daily Star', 'www.worldbulletin.net', 'The Daily Vox (blog)', 'www.worldbulletin.net', 'Daily Sabah', 'Newsmax', 'PR Newswire via Yahoo! Finance', 'CNBC', 'Washington Free Beacon', 'NBC NEWS', 'XXLMAG.COM', 'Forbes', 'Hindu Business Line', 'teleSUR English', 'Ten Eyewitness News', 'Forbes', 'AFP via Yahoo!7 Finance', 'CityNews', 'The Fiscal Times', 'Zee News', 'The Times of Israel', 'TASS', 'New York Times', 'Milwaukee Journal Sentinel', 'ZDNet UK', 'The Independent', 'Financial Times', 'Globalnews.ca', 'Bloomberg', 'Los Angeles Daily News', 'CNET', 'New York Times', 'BetaNews', 'Belfast Telegraph', 'ForexLive', 'Reuters via Yahoo!7 News', 'Reuters via Yahoo! Philippines News', 'Quartz', 'Miami Herald', 'Premium Times', 'AlterNet', 'Singapore Business Review via Yahoo! Finance', 'The Japan Times', 'USA TODAY', 'Aljazeera.com', 'WPTZ The Champlain Valley', 'People Magazine', 'The Wall Street Journal', 'Reuters India', 'Reuters', 'Press-Enterprise', 'New York Times', 'AFP via Yahoo! India News', 'Daily Sabah', 'Cape Business News South Africa Business', 'The Washington Times', 'Business Insider', 'Bloomberg', 'InfoWorld', 'TheBlaze.com', 'WGN-TV', 'Washington Examiner', 'Saskatoon StarPhoenix', 'ZDNet', 'Business Insider', 'Laptop Mag', 'CTV News', 'NBCNews.com', 'Jackson Clarion Ledger', 'Business Insider', 'Greenfield Daily Reporter', 'Washington Times', 'MarketWatch', 'TIME', 'Enstarz', 'Los Angeles Times', 'New York Post', 'New York Times', 'The ', 'Lowell Sun', 'The Hill', 'The Verge via Yahoo Canada News', 'Arutz Sheva', 'Dallas Morning News', 'Reuters', 'AFP via Yahoo! News', 'The Hindu', 'ABC News', 'Ynetnews', 'CNN', 'Associated Press via Yahoo! News', 'Bangkok Post', 'Irish Times', 'Digital Trends via Yahoo! News', 'Emirates 24|7', 'MSPoweruser.com', 'Bloomberg', 'The Hill', 'Los Angeles Times', 'Daily News | The National Newspaper (press release) (blog)', 'WinBeta', 'Richmond Times-Dispatch', 'Newsmax', 'Associated Press via Yahoo! Finance', 'Sputnik International', nan, 'Economic Times', 'Daily Mail', 'The Record', 'MSPoweruser.com', 'Fox 59', 'Business Standard', 'NEWS.com.au', 'Inside Edition', 'Al-Arabiya', 'PC World', 'Network World', 'Salon.com', 'Business Wire via Yahoo! Finance', 'Ars Technica', 'The Verge', 'TechnoBuffalo', 'Arab News via Yahoo Maktoob News', 'The Canadian Press via Yahoo Canada News', 'The Hill (blog)', 'Fortune', 'Utility Dive', 'Digital Trends via Yahoo! News', 'The Register', 'Palestine News Network', 'Bloomberg', 'The Hill', 'Roanoke Times', 'Mondoweiss', 'Huffington Post', 'www.worldbulletin.net', 'The Guardian (blog)', 'AOL News', 'Financial Times', 'Tallahassee.com', 'HEXUS', 'In-Cyprus (press release) (subscription) (blog)', 'New York Times', 'The Independent', 'Forward', 'Eyewitness News', 'Washington Post', 'Reuters via Yahoo! Finance', 'Breitbart News', 'Golf.com', 'CNBC', 'ABC News', 'Financial Times', 'STRATFOR', 'Bloomberg', 'Wall Street Journal', 'KCCI Des Moines', 'Gizmodo Australia', 'Shanghai Daily (subscription)', 'Sun.Star', 'Forbes', 'Forbes', 'Associated Press via Yahoo UK & Ireland News', 'Ahlul Bayt News Agency (press release)', 'Digital Trends via Yahoo! News', 'Yahoo Finance', 'The Hill', 'VICE News', 'UPROXX via Yahoo! Sports', 'Western Journalism', 'MSPoweruser.com', 'CNBC', 'Association France Palestine Solidarit\x9d\x9d', 'WMPoweruser.com', 'Jewish Post', 'Economic Times', 'Cloud Pro', 'StreetInsider.com', 'First Things (blog)', 'MakeUseOf', 'MSPoweruser.com', 'The Guardian Nigeria (satire) (press release) (blog)', 'Yahoo News', 'PC Magazine', 'Neurogadget', 'NPR', 'Daily Telegraph', 'National Post', 'Politico', 'Manila Bulletin', 'Topeka Capital Journal', 'The Canadian Press via Yahoo Canada Finance', 'Hellenic Shipping News Worldwide', 'Hellenic Shipping News Worldwide', 'Santa Barbara Independent', 'CBC via Yahoo Canada News', 'The Daily Banter', 'CNBC via Yahoo! Finance', 'Reuters UK', 'Windows Central', 'NPR', 'Firstpost', 'Intifada Palestine', 'TheBlaze.com', 'Neowin', 'Reuters via Yahoo! Finance', "Barron's (blog)", 'TMZ.com', 'NDTV', 'optionMONSTER Research', 'FXStreet', 'The Guardian', 'The Canadian Press via Yahoo Canada News', 'Business Recorder', 'MassLive.com', 'Courier Mail', 'NPR', 'Middle East Monitor', 'WinBeta']
##Summary of data
pd.set_option('display.precision', 4)
hits_data.describe()
| IDLink | SentimentTitle | SentimentHeadline | GooglePlus | |||
|---|---|---|---|---|---|---|
| count | 4662.0000 | 4662.0000 | 4662.0000 | 4662.0000 | 4662.0000 | 4662.0000 |
| mean | 52174.2018 | -0.0018 | -0.0244 | 122.5146 | 4.0290 | 24.1534 |
| std | 30346.0178 | 0.1353 | 0.1411 | 611.2661 | 17.4662 | 329.2415 |
| min | 9.0000 | -0.7917 | -0.6062 | -1.0000 | -1.0000 | -1.0000 |
| 25% | 25022.7500 | -0.0729 | -0.1118 | 0.0000 | 0.0000 | 0.0000 |
| 50% | 53185.5000 | 0.0000 | -0.0229 | 5.0000 | 0.0000 | 0.0000 |
| 75% | 77077.5000 | 0.0692 | 0.0629 | 36.0000 | 2.0000 | 4.0000 |
| max | 104790.0000 | 0.6782 | 0.7286 | 16598.0000 | 544.0000 | 19737.0000 |
Plots for Better Understanding...
plt.figure(figsize=(10,6))
plt.title("Top Topic Trending")
sns.barplot(x=hits_data.index, y=hits_data['Topic'])
plt.ylabel("Trending Topic")
Text(0, 0.5, 'Trending Topic')
sns.set_style("dark")
# Line chart
plt.figure(figsize=(12,6))
sns.lineplot(data=hits_data)
<Axes: >
sns.scatterplot(x=hits_data['Topic'], y=hits_data['SentimentHeadline'])
<Axes: xlabel='Topic', ylabel='SentimentHeadline'>
hits_viz = ProfileReport(hits_data, title="Top Trending")
hits_viz
hits_data=sampled_data
hits_dataa=hits_data.loc[:,['Title','Headline','Topic']]
hits_dataa.Topic.value_counts()
economy 1669 obama 1476 microsoft 1094 palestine 423 Name: Topic, dtype: int64
sns.set(style='whitegrid')
f, (ax1, ax2, ax3, ax4) = plt.subplots(1,4,figsize=(25,8))
sns.distplot(df2[df2['Topic'] == 'economy']['Headline'].str.len(), kde=True, color='r', ax=ax1)
ax1.set_title('Economy')
sns.distplot(df2[df2['Topic'] == 'obama']['Headline'].str.len(), kde=True, color='b', ax=ax2)
ax2.set_title('Obama')
sns.distplot(df2[df2['Topic'] == 'microsoft']['Headline'].str.len(), kde=True, color='g', ax=ax3)
ax3.set_title('Microsoft')
sns.distplot(df2[df2['Topic'] == 'palestine']['Headline'].str.len(), kde=True, color='y', ax=ax4)
ax4.set_title('Palestine')
f.suptitle('Histogram number of characters in topics headlines')
Text(0.5, 0.98, 'Histogram number of characters in topics headlines')
We can see above they have similar characteristics and we can not say too much about a special feature of any of them, would be better to apply this method but for the words.
This is why, we are goind to compute and display a histogram of the number of words in the headlines of each topic:
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
def plot_headline_lengths_by_topic(hits_data, topics, colors):
num_topics = len(topics)
# Create subplots based on the number of topics
f, axes = plt.subplots(1, num_topics, figsize=(25, 8))
for i, (topic, color) in enumerate(zip(topics, colors)):
ax = axes[i]
df = hits_data[(hits_data['Topic'] == topic) & hits_data['Headline'].notnull() & hits_data['Headline'].apply(lambda x: isinstance(x, str))]
sns.distplot(df['Headline'].str.split().map(lambda x: len(x)), kde=True, ax=ax, color=color)
ax.set_title(topic)
f.suptitle('Histogram number of words in topics headlines')
plt.show()
# List of topics you want to analyze
topics = ['economy', 'obama', 'microsoft', 'palestine']
# List of colors for each topic
colors = ['r', 'b', 'g', 'y']
# Call the function to create the subplots with different colors
plot_headline_lengths_by_topic(hits_data, topics, colors)
Cleaning:
We have to consider that the instances included in the file were obtained by several sources such as: Facebook, LinkedIn and Google Plus, as we know and have seen in some of the headlines are included characters which are not alphanumeric and belong to tags used in social media, these can be useful in specific tasks (mention or hashtag), however in the scope of topic classification such tags are not significatively useful. This is why in the current step we will get rid of them so as to keep only the corpus or core data:
import re
import string
def clean_text(text):
# Remove URLs
url = re.compile(r'https?://\S+|www\.\S+')
text = url.sub('', text)
# Remove HTML tags
html = re.compile(r'<.*?>')
text = html.sub('', text)
# Remove emojis
emoji_pattern = re.compile("["
u"\U0001F600-\U0001F64F" # emoticons
u"\U0001F300-\U0001F5FF" # symbols & pictographs
u"\U0001F680-\U0001F6FF" # transport & map symbols
u"\U0001F1E0-\U0001F1FF" # flags (iOS)
u"\U00002702-\U000027B0"
u"\U000024C2-\U0001F251"
"]+", flags=re.UNICODE)
text = emoji_pattern.sub('', text)
# Remove punctuation
table = str.maketrans('', '', string.punctuation)
text = text.translate(table)
# Remove extra spaces, dashes, and special characters
text = re.sub(r'\s+', ' ', text)
text = text.replace('—', ' ')
text = text.replace('–', ' ')
return text
hits_data['Headline']=hits_data['Headline'].astype(str).apply(lambda x : clean_text(x))
# example="I am a #king , _ 😂😂😂"
# print(clean_text(example))
print(hits_data.head(5))
IDLink Title \
0 68153.0 Obama, Nerd President, Needs to Get Right With...
1 47207.0 Johannesburg committed to developing job inten...
2 71039.0 Whose President Was He?
3 44514.0 Argentina pays off 'holdout' bondholders, elev...
4 98795.0 Obama: Trump displays ignorance, seeks tweets ...
Headline \
0 President Barack Obama knocked off work on Fri...
1 THE City of Johannesburg has committed itself ...
2 If I spent all my time thinking about it Id be...
3 In recent years soybean farmer Mario Caceres h...
4 US President Barack Obama disparaged US Republ...
Source Topic PublishDate SentimentTitle \
0 Wall Street Journal (blog) obama 2015-12-21 16:46:40 0.067168
1 BDlive economy 2016-05-04 12:41:17 -0.039591
2 POLITICO Magazine obama 2016-01-07 00:00:00 0.000000
3 Los Angeles Times economy 2016-04-23 11:01:15 -0.101852
4 PoliticusUSA obama 2016-05-28 13:35:28 0.000000
SentimentHeadline Facebook GooglePlus LinkedIn
0 -0.062808 100 1 0
1 -0.024436 4 1 2
2 0.408575 87 1 1
3 0.437500 -1 0 3
4 0.000000 181 16 1
# showing number of different values in Source column
hits_data['Source'].value_counts()
Bloomberg 86
Reuters 60
The Guardian 56
Business Insider 52
ABC News 51
..
THISDAY Live 1
WAPT Jackson 1
EurekAlert! 1
SNAPPA Technology via Yahoo UK & Ireland News 1
Manufacturing.net 1
Name: Source, Length: 1435, dtype: int64
import nltk
import matplotlib.pyplot as plt
import seaborn as sns
from nltk.corpus import stopwords
from collections import Counter
nltk.download("stopwords")
stop_words = set(stopwords.words("english"))
# Define the topics you want to analyze
topics = ['economy', 'obama', 'microsoft', 'palestine']
# Create subplots for each topic
fig, axs = plt.subplots(2, 2, figsize=(12, 12))
fig.suptitle('Top 10 Most Common Words in Different Topics', fontsize=16)
for i, topic in enumerate(topics):
row = i // 2
col = i % 2
# Get word counts for the current topic
word_count = Counter(" ".join(hits_data[hits_data['Topic']==topic]['Headline']).split()).most_common(100)
# Filter out stopwords and select the top 10 words
x = []
y = []
for word, count in word_count:
if word.casefold() not in stop_words:
x.append(word)
y.append(count)
# Create a bar plot for the current topic
sns.barplot(x=y[:10], y=x[:10], ax=axs[row, col])
axs[row, col].set_title(f'Top 10 words in {topic.capitalize()} Topic')
# Adjust spacing between subplots
plt.tight_layout(rect=[0, 0.03, 1, 0.95])
plt.show()
[nltk_data] Downloading package stopwords to /home/mr- [nltk_data] cern/nltk_data... [nltk_data] Package stopwords is already up-to-date!
# Define ngram generator function
def generate_ngrams(text, n_gram):
token = [token for token in text.lower().split(' ') if token != '' if token not in stop_words]
ngrams = zip(*[token[i:] for i in range(n_gram)])
return [' '.join(ngram) for ngram in ngrams]
# Bigrams
N=10
df=hits_data
economy_bigrams = defaultdict(int)
obama_bigrams = defaultdict(int)
microsoft_bigrams = defaultdict(int)
palestine_bigrams = defaultdict(int)
for instance in df[df['Topic']=='palestine']['Headline']:
for word in generate_ngrams(instance, n_gram=2):
palestine_bigrams[word] += 1
for instance in df[df['Topic']=='obama']['Headline']:
for word in generate_ngrams(instance, n_gram=2):
obama_bigrams[word] += 1
for instance in df[df['Topic']=='economy']['Headline']:
for word in generate_ngrams(instance, n_gram=2):
economy_bigrams[word] += 1
for instance in df[df['Topic']=='microsoft']['Headline']:
for word in generate_ngrams(instance, n_gram=2):
microsoft_bigrams[word] += 1
df_palestine_bigrams = pd.DataFrame(sorted(palestine_bigrams.items(), key=lambda x: x[1])[::-1])
df_obama_bigrams = pd.DataFrame(sorted(obama_bigrams.items(), key=lambda x: x[1])[::-1])
df_economy_bigrams = pd.DataFrame(sorted(economy_bigrams.items(), key=lambda x: x[1])[::-1])
df_microsoft_bigrams = pd.DataFrame(sorted(microsoft_bigrams.items(), key=lambda x: x[1])[::-1])
fig, axes = plt.subplots(2, 2, figsize=(20, 10), dpi=80)
plt.tight_layout()
sns.barplot(y=df_palestine_bigrams[0].values[:N], x=df_palestine_bigrams[1].values[:N], ax=axes[0,0], color='r')
axes[0,0].spines['right'].set_visible(False)
axes[0,0].tick_params(axis='x', labelsize=13)
axes[0,0].tick_params(axis='y', labelsize=13)
sns.barplot(y=df_economy_bigrams[0].values[:N], x=df_economy_bigrams[1].values[:N], ax=axes[0,1], color='b')
axes[0,1].spines['right'].set_visible(False)
axes[0,1].tick_params(axis='x', labelsize=13)
axes[0,1].tick_params(axis='y', labelsize=13)
sns.barplot(y=df_obama_bigrams[0].values[:N], x=df_obama_bigrams[1].values[:N], ax=axes[1,0], color='g')
axes[1,0].spines['right'].set_visible(False)
axes[1,0].tick_params(axis='x', labelsize=13)
axes[1,0].tick_params(axis='y', labelsize=13)
sns.barplot(y=df_microsoft_bigrams[0].values[:N], x=df_microsoft_bigrams[1].values[:N], ax=axes[1,1], color='y')
axes[1,1].spines['right'].set_visible(False)
axes[1,1].tick_params(axis='x', labelsize=13)
axes[1,1].tick_params(axis='y', labelsize=13)
axes[0,0].set_title(f'Top {N} most common bigrams in Palestine Topic', fontsize=15)
axes[0,1].set_title(f'Top {N} most common bigrams in Economy Topic', fontsize=15)
axes[1,0].set_title(f'Top {N} most common bigrams in Obama Topic', fontsize=15)
axes[1,1].set_title(f'Top {N} most common bigrams in Microsoft Topic', fontsize=15)
plt.show()
plt.tight_layout()
<Figure size 640x480 with 0 Axes>
# Trigrams
economy_trigrams = defaultdict(int)
obama_trigrams = defaultdict(int)
microsoft_trigrams = defaultdict(int)
palestine_trigrams = defaultdict(int)
for instance in df[df['Topic']=='palestine']['Headline']:
for word in generate_ngrams(instance, n_gram=3):
palestine_trigrams[word] += 1
for instance in df[df['Topic']=='obama']['Headline']:
for word in generate_ngrams(instance, n_gram=3):
obama_trigrams[word] += 1
for instance in df[df['Topic']=='economy']['Headline']:
for word in generate_ngrams(instance, n_gram=3):
economy_trigrams[word] += 1
for instance in df[df['Topic']=='microsoft']['Headline']:
for word in generate_ngrams(instance, n_gram=3):
microsoft_trigrams[word] += 1
df_palestine_trigrams = pd.DataFrame(sorted(palestine_trigrams.items(), key=lambda x: x[1])[::-1])
df_obama_trigrams = pd.DataFrame(sorted(obama_trigrams.items(), key=lambda x: x[1])[::-1])
df_economy_trigrams = pd.DataFrame(sorted(economy_trigrams.items(), key=lambda x: x[1])[::-1])
df_microsoft_trigrams = pd.DataFrame(sorted(microsoft_trigrams.items(), key=lambda x: x[1])[::-1])
fig, axes = plt.subplots(2, 2, figsize=(20, 10), dpi=80)
plt.tight_layout()
sns.barplot(y=df_palestine_trigrams[0].values[:N], x=df_palestine_trigrams[1].values[:N], ax=axes[0,0], color='r')
axes[0,0].spines['right'].set_visible(False)
axes[0,0].tick_params(axis='x', labelsize=13)
axes[0,0].tick_params(axis='y', labelsize=13)
sns.barplot(y=df_economy_trigrams[0].values[:N], x=df_economy_trigrams[1].values[:N], ax=axes[0,1], color='b')
axes[0,1].spines['right'].set_visible(False)
axes[0,1].tick_params(axis='x', labelsize=13)
axes[0,1].tick_params(axis='y', labelsize=13)
sns.barplot(y=df_obama_trigrams[0].values[:N], x=df_obama_trigrams[1].values[:N], ax=axes[1,0], color='g')
axes[1,0].spines['right'].set_visible(False)
axes[1,0].tick_params(axis='x', labelsize=13)
axes[1,0].tick_params(axis='y', labelsize=13)
sns.barplot(y=df_microsoft_trigrams[0].values[:N], x=df_microsoft_trigrams[1].values[:N], ax=axes[1,1], color='y')
axes[1,1].spines['right'].set_visible(False)
axes[1,1].tick_params(axis='x', labelsize=13)
axes[1,1].tick_params(axis='y', labelsize=13)
axes[0,0].set_title(f'Top {N} most common trigrams in Palestine Topic', fontsize=15)
axes[0,1].set_title(f'Top {N} most common trigrams in Economy Topic', fontsize=15)
axes[1,0].set_title(f'Top {N} most common trigrams in Obama Topic', fontsize=15)
axes[1,1].set_title(f'Top {N} most common trigrams in Microsoft Topic', fontsize=15)
plt.show()
plt.tight_layout()
<Figure size 640x480 with 0 Axes>
!pip install transformers
Collecting transformers
Downloading transformers-4.33.2-py3-none-any.whl (7.6 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.6/7.6 MB 15.6 MB/s eta 0:00:00
Requirement already satisfied: filelock in /usr/local/lib/python3.10/dist-packages (from transformers) (3.12.2)
Collecting huggingface-hub<1.0,>=0.15.1 (from transformers)
Downloading huggingface_hub-0.17.2-py3-none-any.whl (294 kB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 294.9/294.9 kB 24.3 MB/s eta 0:00:00
Requirement already satisfied: numpy>=1.17 in /usr/local/lib/python3.10/dist-packages (from transformers) (1.23.5)
Requirement already satisfied: packaging>=20.0 in /usr/local/lib/python3.10/dist-packages (from transformers) (23.1)
Requirement already satisfied: pyyaml>=5.1 in /usr/local/lib/python3.10/dist-packages (from transformers) (6.0.1)
Requirement already satisfied: regex!=2019.12.17 in /usr/local/lib/python3.10/dist-packages (from transformers) (2023.6.3)
Requirement already satisfied: requests in /usr/local/lib/python3.10/dist-packages (from transformers) (2.31.0)
Collecting tokenizers!=0.11.3,<0.14,>=0.11.1 (from transformers)
Downloading tokenizers-0.13.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 7.8/7.8 MB 40.1 MB/s eta 0:00:00
Collecting safetensors>=0.3.1 (from transformers)
Downloading safetensors-0.3.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB)
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ 1.3/1.3 MB 44.3 MB/s eta 0:00:00
Requirement already satisfied: tqdm>=4.27 in /usr/local/lib/python3.10/dist-packages (from transformers) (4.66.1)
Requirement already satisfied: fsspec in /usr/local/lib/python3.10/dist-packages (from huggingface-hub<1.0,>=0.15.1->transformers) (2023.6.0)
Requirement already satisfied: typing-extensions>=3.7.4.3 in /usr/local/lib/python3.10/dist-packages (from huggingface-hub<1.0,>=0.15.1->transformers) (4.5.0)
Requirement already satisfied: charset-normalizer<4,>=2 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (3.2.0)
Requirement already satisfied: idna<4,>=2.5 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (3.4)
Requirement already satisfied: urllib3<3,>=1.21.1 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (2.0.4)
Requirement already satisfied: certifi>=2017.4.17 in /usr/local/lib/python3.10/dist-packages (from requests->transformers) (2023.7.22)
Installing collected packages: tokenizers, safetensors, huggingface-hub, transformers
Successfully installed huggingface-hub-0.17.2 safetensors-0.3.3 tokenizers-0.13.3 transformers-4.33.2
Models
# Load Huggingface transformers
from transformers import TFBertModel, BertConfig, BertTokenizerFast
# Then what you need from tensorflow.keras
from tensorflow.keras.layers import Input, Dropout, Dense
from tensorflow.keras.models import Model
from tensorflow.keras.optimizers import Adam
from tensorflow.keras.callbacks import EarlyStopping
from tensorflow.keras.initializers import TruncatedNormal
from tensorflow.keras.losses import CategoricalCrossentropy
from tensorflow.keras.metrics import CategoricalAccuracy
from tensorflow.keras.utils import to_categorical
# And pandas for data import + sklearn because you allways need sklearn
import pandas as pd
from sklearn.model_selection import train_test_split
### --------- Import data --------- ###
data = hits_data[['Headline', 'Topic']]
# Set your model output as categorical and save in new label col
data['Topic_label'] = pd.Categorical(data['Topic'])
# Transform your output to numeric
data['Topic'] = data['Topic_label'].cat.codes
print(data)
# Split into train and test - stratify over Issue
data_train, data_test = train_test_split(data, test_size = 0.1)
### --------- Setup BERT ---------- ###
# Name of the BERT model to use
model_name = 'bert-base-uncased'
# Max length of tokens
max_length = 45
# Load transformers config and set output_hidden_states to False
config = BertConfig.from_pretrained(model_name)
config.output_hidden_states = False
# Load BERT tokenizer
tokenizer = BertTokenizerFast.from_pretrained(pretrained_model_name_or_path = model_name, config = config)
# Load the Transformers BERT model
transformer_model = TFBertModel.from_pretrained(model_name, config = config)
### ------- Build the model ------- ###
# Load the MainLayer
bert = transformer_model.layers[0]
# Build your model input
input_ids = Input(shape=(max_length,), name='input_ids', dtype='int32')
inputs = {'input_ids': input_ids}
# Load the Transformers BERT model as a layer in a Keras model
bert_model = bert(inputs)[1]
dropout = Dropout(config.hidden_dropout_prob, name='pooled_output')
pooled_output = dropout(bert_model, training=False)
# Then build your model output
topics = Dense(units=len(data_train.Topic_label.value_counts()), kernel_initializer=TruncatedNormal(stddev=config.initializer_range), name='topic')(pooled_output)
outputs = {'topic': topics}
# And combine it all in a model object
model = Model(inputs=inputs, outputs=outputs, name='BERT_MultiLabel_MultiClass')
# Take a look at the model
model.summary()
Headline Topic Topic_label 0 President Barack Obama knocked off work on Fri... 2 obama 1 THE City of Johannesburg has committed itself ... 0 economy 2 If I spent all my time thinking about it Id be... 2 obama 3 In recent years soybean farmer Mario Caceres h... 0 economy 4 US President Barack Obama disparaged US Republ... 2 obama ... ... ... ... 4657 Scottish and UK governments have been urged to... 0 economy 4658 What happened on April 12 at the University of... 3 palestine 4659 RTR4M87B Ted Cruz will not attend President Ba... 2 obama 4660 In its recent Emerging Stronger report the Ont... 0 economy 4661 News Microsoft announced the acquisition of So... 1 microsoft [4662 rows x 3 columns]
Some weights of the PyTorch model were not used when initializing the TF 2.0 model TFBertModel: ['cls.predictions.transform.dense.bias', 'cls.predictions.bias', 'cls.predictions.transform.dense.weight', 'cls.seq_relationship.weight', 'cls.predictions.transform.LayerNorm.weight', 'cls.predictions.transform.LayerNorm.bias', 'cls.seq_relationship.bias'] - This IS expected if you are initializing TFBertModel from a PyTorch model trained on another task or with another architecture (e.g. initializing a TFBertForSequenceClassification model from a BertForPreTraining model). - This IS NOT expected if you are initializing TFBertModel from a PyTorch model that you expect to be exactly identical (e.g. initializing a TFBertForSequenceClassification model from a BertForSequenceClassification model). All the weights of TFBertModel were initialized from the PyTorch model. If your task is similar to the task the model of the checkpoint was trained on, you can already use TFBertModel for predictions without further training.
Model: "BERT_MultiLabel_MultiClass"
_________________________________________________________________
Layer (type) Output Shape Param #
=================================================================
input_ids (InputLayer) [(None, 45)] 0
bert (TFBertMainLayer) TFBaseModelOutputWithPo 109482240
olingAndCrossAttentions
(last_hidden_state=(Non
e, 45, 768),
pooler_output=(None, 7
68),
past_key_values=None,
hidden_states=None, att
entions=None, cross_att
entions=None)
pooled_output (Dropout) (None, 768) 0
topic (Dense) (None, 4) 3076
=================================================================
Total params: 109485316 (417.65 MB)
Trainable params: 109485316 (417.65 MB)
Non-trainable params: 0 (0.00 Byte)
_________________________________________________________________
### ------- Train the model ------- ###
from tensorflow.keras.optimizers import Adam
# Set an optimizer
optimizer = Adam(learning_rate=5e-05, epsilon=1e-08)
# Set loss and metrics
loss = {'topic': CategoricalCrossentropy(from_logits=True)}
# Compile the model
model.compile(optimizer = optimizer, loss = loss, metrics = ['accuracy'])
# Ready output data for the model
y_topic = to_categorical(data_train['Topic'])
# Tokenize the input (takes some time)
x = tokenizer(
text=data_train['Headline'].to_list(),
add_special_tokens=True,
max_length=max_length,
truncation=True,
padding=True,
return_tensors='tf',
return_token_type_ids = False,
return_attention_mask = True,
verbose = True)
# Fit the model
history = model.fit(
x={'input_ids': x['input_ids']},
y={'topic': y_topic},
validation_split=0.1,
batch_size=64,
epochs=2,
verbose=1)
Epoch 1/2 59/59 [==============================] - 2128s 35s/step - loss: 0.6029 - accuracy: 0.7762 - val_loss: 0.1086 - val_accuracy: 0.9714 Epoch 2/2 59/59 [==============================] - 2073s 35s/step - loss: 0.0912 - accuracy: 0.9730 - val_loss: 0.0836 - val_accuracy: 0.9714
def plot_metrics(record):
epoch_range = range(1, len(record.history['accuracy'])+1)
plt.plot(epoch_range, record.history['accuracy'])
plt.plot(epoch_range, record.history['val_accuracy'])
plt.title('Classification Accuracy')
plt.ylabel('Accuracy')
plt.xlabel('Epoch')
plt.legend(['Train', 'Val'], loc='lower right')
plt.show()
# Plot training & validation loss values
plt.plot(epoch_range, record.history['loss'])
plt.plot(epoch_range, record.history['val_loss'])
plt.title('Model loss')
plt.ylabel('Loss')
plt.xlabel('Epoch')
plt.legend(['Train', 'Val'], loc='lower right')
plt.show()
### ----- Evaluate the model ------ ###
# Ready test data
test_y_topic = to_categorical(data_test['Topic'])
test_x = tokenizer(
text=data_test['Headline'].to_list(),
add_special_tokens=True,
max_length=max_length,
truncation=True,
padding=True,
return_tensors='tf',
return_token_type_ids = False,
return_attention_mask = False,
verbose = True)
# Run evaluation
model_eval = model.evaluate(
x={'input_ids': test_x['input_ids']},
y={'product': test_y_topic}
)
15/15 [==============================] - 22s 1s/step - loss: 0.0919 - accuracy: 0.9764
label_predicted = model.predict(
x={'input_ids': test_x['input_ids']},
)
15/15 [==============================] - 21s 1s/step
print(label_predicted['topic'])
test_y_topic
[[-1.7125871 4.8261914 -1.8329566 -1.4352667 ] [ 4.808413 -1.3912343 -0.60679245 -2.0691304 ] [ 0.22565643 -1.8516924 3.3365734 -0.29485998] ... [-1.547097 -1.4503849 4.9682474 -1.1613685 ] [-1.7403784 -1.2965776 4.739276 -1.104759 ] [-1.7594917 4.7585807 -1.9358845 -1.3406243 ]]
array([[0., 1., 0., 0.],
[1., 0., 0., 0.],
[0., 0., 1., 0.],
...,
[0., 0., 1., 0.],
[0., 0., 1., 0.],
[0., 1., 0., 0.]], dtype=float32)
label_pred_max=[np.argmax(i) for i in label_predicted['topic']]
label_actual_max=[np.argmax(i) for i in test_y_topic]
from sklearn.metrics import classification_report
report = classification_report(label_pred_max, label_actual_max)
print(report)
precision recall f1-score support
0 0.97 0.97 0.97 153
1 0.99 1.00 1.00 116
2 1.00 0.96 0.98 153
3 0.90 0.98 0.94 45
accuracy 0.98 467
macro avg 0.96 0.98 0.97 467
weighted avg 0.98 0.98 0.98 467
According to Bert we are able to classifiy topic with accuracy of 98 percent correct.
from sklearn.metrics import confusion_matrix, ConfusionMatrixDisplay
disp = ConfusionMatrixDisplay(confusion_matrix=confusion_matrix(label_pred_max, label_actual_max), display_labels=np.unique(label_actual_max))
disp.plot(cmap='Blues')
plt.grid(False)
hits_data['Headline']=hits_data['Headline'].str.replace('\d+', '')
# Tokenizing:
df[['Headline','Topic']]
import tensorflow as tf
from tensorflow.keras.preprocessing.text import Tokenizer
from tensorflow.keras.preprocessing.sequence import pad_sequences
df['Headline_without_stopwords'] = df['Headline'].apply(lambda x: ' '.join([word for word in x.split() if word not in (stop_words)]))
df[['Headline','Headline_without_stopwords']]
| Headline | Headline_without_stopwords | |
|---|---|---|
| 17026 | President Barack Obama knocked off work on Fri... | President Barack Obama knocked work Friday aft... |
| 70005 | THE City of Johannesburg has committed itself ... | THE City Johannesburg committed developing res... |
| 22941 | If I spent all my time thinking about it Id be... | If I spent time thinking Id paralyzed Barack O... |
| 66136 | In recent years soybean farmer Mario Caceres h... | In recent years soybean farmer Mario Caceres p... |
| 78589 | US President Barack Obama disparaged US Republ... | US President Barack Obama disparaged US Republ... |
| ... | ... | ... |
| 11371 | Scottish and UK governments have been urged to... | Scottish UK governments urged take early actio... |
| 64651 | What happened on April 12 at the University of... | What happened April 12 University Minnesota cl... |
| 24808 | RTR4M87B Ted Cruz will not attend President Ba... | RTR4M87B Ted Cruz attend President Barack Obam... |
| 34410 | In its recent Emerging Stronger report the Ont... | In recent Emerging Stronger report Ontario Cha... |
| 72097 | News Microsoft announced the acquisition of So... | News Microsoft announced acquisition Solair la... |
4662 rows × 2 columns
# Train-test split:
training_portion=0.9
train_size = int(df.shape[0]*training_portion)
train_sentences = df['Headline_without_stopwords'][:train_size]
train_labels = df['Topic'][:train_size]
validation_sentences = df['Headline_without_stopwords'][train_size:]
validation_labels = df['Topic'][train_size:]
print(train_size)
print(len(train_sentences))
print(len(train_labels))
print(len(validation_sentences))
print(len(validation_labels))
4195 4195 4195 467 467
tokenizer0 = Tokenizer()
tokenizer0.fit_on_texts(train_sentences)
word_index = tokenizer0.word_index
len(word_index)
13583
vocab_size = 30000
oov_tok = '<OOV>'
tokenizer = Tokenizer(num_words=vocab_size, oov_token=oov_tok)
tokenizer.fit_on_texts(train_sentences)
word_index = tokenizer.word_index
train_sequences = tokenizer.texts_to_sequences(train_sentences)
lengths=[]
for k in range(len(train_sequences)):
lengths.append(len(train_sequences[k]))
pd.DataFrame(lengths, columns=['Lenghts']).describe()
| Lenghts | |
|---|---|
| count | 4195.000000 |
| mean | 17.212872 |
| std | 7.544604 |
| min | 0.000000 |
| 25% | 14.000000 |
| 50% | 15.000000 |
| 75% | 17.000000 |
| max | 50.000000 |
plt.hist(lengths, bins=50, alpha=0.5)
plt.show()
max_length = 45
trunc_type = 'post'
padding_type = 'post'
train_padded = pad_sequences(train_sequences,maxlen=max_length,padding=padding_type,truncating=trunc_type)
print(len(train_sequences[0]))
print(len(train_padded[0]))
print(len(train_sequences[1]))
print(len(train_padded[1]))
print(len(train_sequences[10]))
print(len(train_padded[10]))
validation_sequences = tokenizer.texts_to_sequences(validation_sentences)
validation_padded = pad_sequences(validation_sequences,padding=padding_type,maxlen=max_length,truncating=trunc_type)
print(len(validation_sequences))
print(validation_padded.shape)
17 45 14 45 11 45 467 (467, 45)
label_tokenizer = Tokenizer()
label_tokenizer.fit_on_texts(train_labels)
training_label_seq = np.array(label_tokenizer.texts_to_sequences(train_labels))
validation_label_seq = np.array(label_tokenizer.texts_to_sequences(validation_labels))
print(training_label_seq[0])
print(training_label_seq[1])
print(training_label_seq[2])
print(training_label_seq.shape)
print(validation_label_seq[0])
print(validation_label_seq[1])
print(validation_label_seq[2])
print(validation_label_seq.shape)
np.unique(validation_label_seq)
[2] [1] [2] (4195, 1) [2] [3] [1] (467, 1)
array([1, 2, 3, 4])
from tensorflow.keras.optimizers import Adam
embedding_dim = 32
model = tf.keras.Sequential([
tf.keras.layers.Embedding(vocab_size,embedding_dim,input_length=max_length),
tf.keras.layers.GlobalAveragePooling1D(),
tf.keras.layers.Dense(24,activation='relu'),
tf.keras.layers.Dense(5,activation='softmax')
])
opt=Adam(learning_rate=5e-3)
model.compile(loss='sparse_categorical_crossentropy',optimizer=opt,metrics=['accuracy'])
model.summary()
Model: "sequential_8"
_________________________________________________________________
Layer (type) Output Shape Param #
=================================================================
embedding_9 (Embedding) (None, 45, 32) 960000
global_average_pooling1d_4 (None, 32) 0
(GlobalAveragePooling1D)
dense_10 (Dense) (None, 24) 792
dense_11 (Dense) (None, 5) 125
=================================================================
Total params: 960917 (3.67 MB)
Trainable params: 960917 (3.67 MB)
Non-trainable params: 0 (0.00 Byte)
_________________________________________________________________
num_epochs = 5
history = model.fit(train_padded,training_label_seq,epochs=num_epochs,
validation_data=(validation_padded,validation_label_seq),
verbose=1)
Epoch 1/5 132/132 [==============================] - 3s 16ms/step - loss: 1.0430 - accuracy: 0.5912 - val_loss: 0.4769 - val_accuracy: 0.8480 Epoch 2/5 132/132 [==============================] - 2s 15ms/step - loss: 0.1869 - accuracy: 0.9609 - val_loss: 0.1687 - val_accuracy: 0.9422 Epoch 3/5 132/132 [==============================] - 2s 14ms/step - loss: 0.0338 - accuracy: 0.9936 - val_loss: 0.1601 - val_accuracy: 0.9465 Epoch 4/5 132/132 [==============================] - 2s 14ms/step - loss: 0.0102 - accuracy: 0.9990 - val_loss: 0.1466 - val_accuracy: 0.9507 Epoch 5/5 132/132 [==============================] - 2s 15ms/step - loss: 0.0047 - accuracy: 0.9995 - val_loss: 0.1515 - val_accuracy: 0.9465
plot_metrics(history)
Prediction for validation set: Let us predict the topics for the validation set and print the first 5 so as to compare them and compute the error metrics:
topic_pred=model.predict(validation_padded)
topic_pred
15/15 [==============================] - 0s 891us/step
array([[2.0499216e-07, 2.7004845e-04, 9.9967217e-01, 2.1952349e-08,
5.7537171e-05],
[1.4172708e-05, 1.4927377e-01, 6.4831316e-03, 7.5919056e-01,
8.5038461e-02],
[1.5446160e-08, 9.9999923e-01, 3.1380927e-07, 3.6489791e-07,
1.8180792e-09],
...,
[1.1985596e-08, 3.8999306e-06, 9.9997222e-01, 5.3741894e-10,
2.3802349e-05],
[1.1171679e-06, 9.8372316e-01, 7.8669364e-06, 1.6247215e-02,
2.0476804e-05],
[3.6971556e-08, 2.8843157e-05, 1.0873346e-07, 9.9762279e-01,
2.3481885e-03]], dtype=float32)
As we know the output corresponds to arrays of 5 values corresponding to probability of instances belonging to each class, from these we have to obtain the maximum of them (argmax) and we will get the class predicted:
class_pred_val = [np.argmax(i) for i in topic_pred]
print(class_pred_val[:5])
[2, 3, 1, 1, 4]
validation_label_seq[:5]
array([[2],
[3],
[1],
[1],
[4]])
validation_sentences[:5]
88637 Cleveland Cavaliers head coach Tyronn Lue grea... 29736 Its touchy subject Redmond 30810 THE SEAT With 32inch seat pitch one roomiest e... 36420 THE Scottish private sector economy shed jobs ... 88847 Palestinian Authority President Mahmoud Abbas ... Name: Headline_without_stopwords, dtype: object
validation_labels[:5]
88637 obama 29736 microsoft 30810 economy 36420 economy 88847 palestine Name: Topic, dtype: object
from sklearn.metrics import classification_report
print(classification_report(class_pred_val,validation_label_seq))
precision recall f1-score support
1 0.97 0.92 0.94 183
2 0.93 0.97 0.95 132
3 0.96 0.96 0.96 109
4 0.87 0.91 0.89 43
accuracy 0.94 467
macro avg 0.93 0.94 0.94 467
weighted avg 0.95 0.94 0.94 467
Above model is able to predict / classifiy Topic with 94 % accuracy.
from sklearn.metrics import confusion_matrix, ConfusionMatrixDisplay
disp = ConfusionMatrixDisplay(confusion_matrix=confusion_matrix(class_pred_val,validation_label_seq), display_labels=np.unique(validation_label_seq))
disp.plot(cmap='Blues')
plt.grid(False)
GLOVE-MODELS
tokenizer_glove = Tokenizer()
tokenizer_glove.fit_on_texts(train_sentences)
word_index_glove = tokenizer_glove.word_index
len(word_index_glove)
13583
train_glove_sequences=tokenizer_glove.texts_to_sequences(train_sentences)
train_glove_padded = pad_sequences(train_glove_sequences,maxlen=max_length,
padding=padding_type,truncating=trunc_type)
train_glove_padded.shape
(4195, 45)
val_glove_sequences=tokenizer_glove.texts_to_sequences(validation_sentences)
val_glove_padded = pad_sequences(val_glove_sequences,maxlen=max_length,
padding=padding_type,truncating=trunc_type)
val_glove_padded.shape
vocab_size_glove=len(word_index_glove)
embeddings_index = {};
with open('/home/mr-cern/Desktop/Python/glove.6B.100d.txt') as f:
for line in f:
values = line.split();
word = values[0];
coefs = np.asarray(values[1:], dtype='float32');
embeddings_index[word] = coefs;
# Determine the number of unique words in your dataset
num_words = len(embeddings_index)
# Initialize embeddings_matrix with the correct shape
embedding_dim = 100
embeddings_matrix = np.zeros((num_words, embedding_dim))
# Iterate through your words and populate embeddings_matrix
for i, word in enumerate(word_index.keys()):
embedding_vector = embeddings_index.get(word)
if embedding_vector is not None:
embeddings_matrix[i] = embedding_vector
# Assuming embeddings_matrix contains the pre-trained GloVe embeddings
embedding_dim_glove = 100
# Check the actual vocabulary size from embeddings_matrix
vocab_size_glove, embedding_dim_check = embeddings_matrix.shape
assert embedding_dim_glove == embedding_dim_check, "Embedding dimensions don't match"
# Create the model with the correct vocabulary size and embedding dimension
model_glove = tf.keras.Sequential([
tf.keras.layers.Embedding(vocab_size_glove, embedding_dim_glove, input_length=max_length, weights=[embeddings_matrix], trainable=False),
tf.keras.layers.GlobalAveragePooling1D(),
tf.keras.layers.Dense(24, activation='relu'),
tf.keras.layers.Dense(5, activation='softmax')
])
Pre-trained model 1: This model has to be similar to the scratch one in terms of layers so as to compare both and quantify the impact of using Glove weights in the embedding layer:
opt=Adam(learning_rate=5e-3)
model_glove.compile(loss='sparse_categorical_crossentropy',optimizer=opt,metrics=['accuracy'])
model_glove.summary()
Model: "sequential_3"
_________________________________________________________________
Layer (type) Output Shape Param #
=================================================================
embedding_3 (Embedding) (None, 45, 100) 40000000
global_average_pooling1d_3 (None, 100) 0
(GlobalAveragePooling1D)
dense_6 (Dense) (None, 24) 2424
dense_7 (Dense) (None, 5) 125
=================================================================
Total params: 40002549 (152.60 MB)
Trainable params: 2549 (9.96 KB)
Non-trainable params: 40000000 (152.59 MB)
_________________________________________________________________
num_epochs = 10
history_glove = model_glove.fit(train_glove_padded,training_label_seq,epochs=num_epochs,
validation_data=(val_glove_padded,validation_label_seq),verbose=1)
Epoch 1/10 132/132 [==============================] - 2s 2ms/step - loss: 0.6509 - accuracy: 0.7871 - val_loss: 0.2975 - val_accuracy: 0.9079 Epoch 2/10 132/132 [==============================] - 0s 1ms/step - loss: 0.2385 - accuracy: 0.9263 - val_loss: 0.2118 - val_accuracy: 0.9251 Epoch 3/10 132/132 [==============================] - 0s 1ms/step - loss: 0.1941 - accuracy: 0.9380 - val_loss: 0.2012 - val_accuracy: 0.9336 Epoch 4/10 132/132 [==============================] - 0s 1ms/step - loss: 0.1740 - accuracy: 0.9421 - val_loss: 0.1838 - val_accuracy: 0.9336 Epoch 5/10 132/132 [==============================] - 0s 1ms/step - loss: 0.1635 - accuracy: 0.9456 - val_loss: 0.1780 - val_accuracy: 0.9422 Epoch 6/10 132/132 [==============================] - 0s 1ms/step - loss: 0.1598 - accuracy: 0.9468 - val_loss: 0.1789 - val_accuracy: 0.9400 Epoch 7/10 132/132 [==============================] - 0s 1ms/step - loss: 0.1513 - accuracy: 0.9473 - val_loss: 0.1783 - val_accuracy: 0.9358 Epoch 8/10 132/132 [==============================] - 0s 1ms/step - loss: 0.1462 - accuracy: 0.9495 - val_loss: 0.1727 - val_accuracy: 0.9400 Epoch 9/10 132/132 [==============================] - 0s 1ms/step - loss: 0.1416 - accuracy: 0.9523 - val_loss: 0.1661 - val_accuracy: 0.9379 Epoch 10/10 132/132 [==============================] - 0s 1ms/step - loss: 0.1382 - accuracy: 0.9523 - val_loss: 0.1672 - val_accuracy: 0.9400
Pre-trained model 2: This model will contain layers we have not used yet, SpatialDropout1D which is the equivalent of dropout in dense layers, but applied to 1D-sequences, then a LSTM with 45 units (equal to the sentence length) and finally a Dense softmax layer:
from tensorflow.keras.optimizers import Adam
# Ensure vocab_size_glove is set correctly
vocab_size_glove = len(word_index) + 1
# Create the Embedding layer with the correct vocab_size_glove
model_glove2 = Sequential()
model_glove2.add(Embedding(vocab_size_glove, 100, weights=[embeddings_matrix], input_length=max_length, trainable=False))
model_glove2.add(SpatialDropout1D(0.2))
model_glove2.add(LSTM(45, dropout=0.2, recurrent_dropout=0.2))
opt=Adam(learning_rate=5e-3)
model_glove2.compile(loss='sparse_categorical_crossentropy',optimizer=opt,metrics=['accuracy'])
model_glove2.summary()
Model: "sequential_5"
_________________________________________________________________
Layer (type) Output Shape Param #
=================================================================
embedding_6 (Embedding) (None, 45, 100) 1358500
spatial_dropout1d (Spatial (None, 45, 100) 0
Dropout1D)
lstm (LSTM) (None, 45) 26280
=================================================================
Total params: 1384780 (5.28 MB)
Trainable params: 26280 (102.66 KB)
Non-trainable params: 1358500 (5.18 MB)
_________________________________________________________________
num_epochs = 20
history_glove2 = model_glove2.fit(train_glove_padded,training_label_seq,epochs=num_epochs,
validation_data=(val_glove_padded,validation_label_seq),verbose=1,
batch_size=32)
Epoch 1/20 1/132 [..............................] - ETA: 5s - loss: 0.7330 - accuracy: 0.7500132/132 [==============================] - 2s 18ms/step - loss: 0.5877 - accuracy: 0.8029 - val_loss: 0.4349 - val_accuracy: 0.8501 Epoch 2/20 132/132 [==============================] - 2s 18ms/step - loss: 0.5007 - accuracy: 0.8331 - val_loss: 0.3889 - val_accuracy: 0.8544 Epoch 3/20 132/132 [==============================] - 2s 19ms/step - loss: 0.4478 - accuracy: 0.8482 - val_loss: 0.3830 - val_accuracy: 0.8544 Epoch 4/20 132/132 [==============================] - 2s 18ms/step - loss: 0.4103 - accuracy: 0.8563 - val_loss: 0.3387 - val_accuracy: 0.8758 Epoch 5/20 132/132 [==============================] - 2s 17ms/step - loss: 0.4025 - accuracy: 0.8553 - val_loss: 0.3599 - val_accuracy: 0.8779 Epoch 6/20 132/132 [==============================] - 2s 17ms/step - loss: 0.3919 - accuracy: 0.8622 - val_loss: 0.3347 - val_accuracy: 0.8801 Epoch 7/20 132/132 [==============================] - 2s 17ms/step - loss: 0.3479 - accuracy: 0.8853 - val_loss: 0.3268 - val_accuracy: 0.8822 Epoch 8/20 132/132 [==============================] - 2s 19ms/step - loss: 0.3424 - accuracy: 0.8799 - val_loss: 0.3121 - val_accuracy: 0.8887 Epoch 9/20 132/132 [==============================] - 2s 18ms/step - loss: 0.3378 - accuracy: 0.8787 - val_loss: 0.3290 - val_accuracy: 0.8887 Epoch 10/20 132/132 [==============================] - 2s 17ms/step - loss: 0.3216 - accuracy: 0.8820 - val_loss: 0.3038 - val_accuracy: 0.8972 Epoch 11/20 132/132 [==============================] - 2s 18ms/step - loss: 0.3097 - accuracy: 0.8920 - val_loss: 0.3068 - val_accuracy: 0.8908 Epoch 12/20 132/132 [==============================] - 2s 18ms/step - loss: 0.2981 - accuracy: 0.8949 - val_loss: 0.2657 - val_accuracy: 0.8951 Epoch 13/20 132/132 [==============================] - 2s 19ms/step - loss: 0.2846 - accuracy: 0.9037 - val_loss: 0.2666 - val_accuracy: 0.9079 Epoch 14/20 132/132 [==============================] - 2s 18ms/step - loss: 0.2741 - accuracy: 0.9037 - val_loss: 0.2721 - val_accuracy: 0.8972 Epoch 15/20 132/132 [==============================] - 2s 18ms/step - loss: 0.2643 - accuracy: 0.9092 - val_loss: 0.2826 - val_accuracy: 0.8929 Epoch 16/20 132/132 [==============================] - 2s 19ms/step - loss: 0.2431 - accuracy: 0.9135 - val_loss: 0.2830 - val_accuracy: 0.9079 Epoch 17/20 132/132 [==============================] - 2s 18ms/step - loss: 0.2472 - accuracy: 0.9147 - val_loss: 0.3007 - val_accuracy: 0.9079 Epoch 18/20 132/132 [==============================] - 2s 18ms/step - loss: 0.2556 - accuracy: 0.9106 - val_loss: 0.2868 - val_accuracy: 0.9058 Epoch 19/20 132/132 [==============================] - 2s 18ms/step - loss: 0.2478 - accuracy: 0.9149 - val_loss: 0.2858 - val_accuracy: 0.9122 Epoch 20/20 132/132 [==============================] - 2s 19ms/step - loss: 0.2260 - accuracy: 0.9225 - val_loss: 0.2743 - val_accuracy: 0.9015
Pre-trained model 3: We will go back to the first architecture and change the GlobalAveragePooling1D with LSTM of 45 units followed by 2 Dense layers, let us see the performance:
# Ensure vocab_size_glove is set correctly, including +1 for the reserved index
vocab_size_glove = len(word_index) + 1
# Create the Embedding layer with the correct vocab_size_glove
model_glove3 = Sequential()
model_glove3.add(Embedding(vocab_size_glove, 100, weights=[embeddings_matrix], input_length=max_length, trainable=False))
model_glove3.add(LSTM(45, dropout=0.2, recurrent_dropout=0.2))
model_glove3.add(Dense(24, activation='relu'))
model_glove3.add(Dense(5, activation='softmax'))
opt=Adam(learning_rate=5e-3)
model_glove3.compile(loss='sparse_categorical_crossentropy',optimizer=opt,metrics=['accuracy'])
model_glove3.summary()
Model: "sequential_7"
_________________________________________________________________
Layer (type) Output Shape Param #
=================================================================
embedding_8 (Embedding) (None, 45, 100) 1358500
lstm_1 (LSTM) (None, 45) 26280
dense_8 (Dense) (None, 24) 1104
dense_9 (Dense) (None, 5) 125
=================================================================
Total params: 1386009 (5.29 MB)
Trainable params: 27509 (107.46 KB)
Non-trainable params: 1358500 (5.18 MB)
_________________________________________________________________
num_epochs = 10
history_glove3 = model_glove3.fit(train_glove_padded,training_label_seq,epochs=num_epochs,
validation_data=(val_glove_padded,validation_label_seq),verbose=1,
batch_size=32)
Epoch 1/10 132/132 [==============================] - 2s 17ms/step - loss: 0.4181 - accuracy: 0.8372 - val_loss: 0.3754 - val_accuracy: 0.8630 Epoch 2/10 132/132 [==============================] - 2s 17ms/step - loss: 0.3426 - accuracy: 0.8741 - val_loss: 0.3020 - val_accuracy: 0.8887 Epoch 3/10 132/132 [==============================] - 2s 18ms/step - loss: 0.2997 - accuracy: 0.8889 - val_loss: 0.2868 - val_accuracy: 0.8865 Epoch 4/10 132/132 [==============================] - 3s 22ms/step - loss: 0.2487 - accuracy: 0.9120 - val_loss: 0.3044 - val_accuracy: 0.8822 Epoch 5/10 132/132 [==============================] - 3s 20ms/step - loss: 0.2204 - accuracy: 0.9204 - val_loss: 0.2797 - val_accuracy: 0.8801 Epoch 6/10 132/132 [==============================] - 2s 17ms/step - loss: 0.2046 - accuracy: 0.9271 - val_loss: 0.2788 - val_accuracy: 0.8887 Epoch 7/10 132/132 [==============================] - 2s 14ms/step - loss: 0.1981 - accuracy: 0.9259 - val_loss: 0.2721 - val_accuracy: 0.8972 Epoch 8/10 132/132 [==============================] - 2s 14ms/step - loss: 0.1824 - accuracy: 0.9342 - val_loss: 0.2880 - val_accuracy: 0.8929 Epoch 9/10 132/132 [==============================] - 2s 13ms/step - loss: 0.1655 - accuracy: 0.9421 - val_loss: 0.2745 - val_accuracy: 0.8951 Epoch 10/10 132/132 [==============================] - 2s 13ms/step - loss: 0.1478 - accuracy: 0.9473 - val_loss: 0.2939 - val_accuracy: 0.8908
topic_pred_glove=model_glove3.predict(val_glove_padded)
topic_pred_glove
class_pred_val_glove = [np.argmax(i) for i in topic_pred_glove]
print(class_pred_val_glove[:5])
from sklearn.metrics import classification_report
print(classification_report(class_pred_val_glove,validation_label_seq))
15/15 [==============================] - 0s 4ms/step
[2, 1, 1, 1, 4]
precision recall f1-score support
1 0.88 0.93 0.91 165
2 0.93 0.81 0.86 158
3 0.92 1.00 0.96 100
4 0.76 0.77 0.76 44
accuracy 0.89 467
macro avg 0.87 0.88 0.87 467
weighted avg 0.89 0.89 0.89 467
Pre-trained models 1,2 & 3 are able to classifiy topic with an average of 89% of accuracy.
from sklearn.metrics import confusion_matrix, ConfusionMatrixDisplay
disp = ConfusionMatrixDisplay(confusion_matrix=confusion_matrix(class_pred_val_glove,validation_label_seq), display_labels=np.unique(validation_label_seq))
disp.plot(cmap='Blues')
plt.grid(False)
import pandas as pd
from sklearn.feature_extraction.text import TfidfVectorizer
from sklearn.metrics.pairwise import linear_kernel
import re
import string
from gensim.models import Word2Vec
# Load the dataset
data_file = '/content/Sampled_News_Final.csv'
data = pd.read_csv(data_file)
print(data.isnull().sum())
data.fillna(0, inplace=True)
# Define a function to clean text
def clean_text(text):
# Remove URLs
url = re.compile(r'https?://\S+|www\.\S+')
text = url.sub('', text)
# Remove HTML tags
html = re.compile(r'<.*?>')
text = html.sub('', text)
# Remove emojis
emoji_pattern = re.compile("["
u"\U0001F600-\U0001F64F" # emoticons
u"\U0001F300-\U0001F5FF" # symbols & pictographs
u"\U0001F680-\U0001F6FF" # transport & map symbols
u"\U0001F1E0-\U0001F1FF" # flags (iOS)
u"\U00002702-\U000027B0"
u"\U000024C2-\U0001F251"
"]+", flags=re.UNICODE)
text = emoji_pattern.sub('', text)
# Remove punctuation
table = str.maketrans('', '', string.punctuation)
text = text.translate(table)
# Remove extra spaces, dashes, and special characters
text = re.sub(r'\s+', ' ', text)
text = text.replace('—', ' ')
text = text.replace('–', ' ')
return text
data['Headline'] = data['Headline'].astype(str).apply(lambda x: clean_text(x))
# Combine Title and Headline for content analysis
data['Content'] = data['Title'] + ' ' + data['Headline']
# Create TF-IDF vectorizer
tfidf_vectorizer = TfidfVectorizer(stop_words='english')
tfidf_matrix = tfidf_vectorizer.fit_transform(data['Content'])
# Calculate cosine similarity between items
cosine_sim = linear_kernel(tfidf_matrix, tfidf_matrix)
# Train Word2Vec model on the tokenized text
tokenized_data = data['Content'].apply(clean_text).str.split() # Tokenize the content
model = Word2Vec(tokenized_data, vector_size=100, window=5, min_count=1, sg=0)
# Define a function to list all available article titles
def list_all_article_titles():
return data['Title'].tolist()
# List all available article titles
all_article_titles = list_all_article_titles()
print("All Available Article Titles:")
for i, title in enumerate(all_article_titles):
print(f"{i + 1}. {title}")
IDLink 0 Title 0 Headline 2 Source 18 Topic 0 PublishDate 0 SentimentTitle 0 SentimentHeadline 0 Facebook 0 GooglePlus 0 LinkedIn 0 dtype: int64 All Available Article Titles: 1. Obama, Nerd President, Needs to Get Right With 'Star Wars' Fans 2. Johannesburg committed to developing job intensive economy, says ... 3. Whose President Was He? 4. Argentina pays off 'holdout' bondholders, elevating hopes for economy 5. Obama: Trump displays ignorance, seeks tweets over solutions 6. Why Trudeau’s infrastructure plan may not be a quick and easy fix for the economy after all 7. Stocks Are Melting Down. Is The Economy Next? 8. Critics of China economy risk backlash from regulators 9. Nokia's 'Moonraker' wearable wasn't the smartwatch Microsoft ... 10. Microsoft to Replace Some Surface Pro Power Cords Due to Overheating Reports 11. Microsoft software update breaks Windows 7 on some PCs - CNET 12. Swaraj heads to Israel, Palestine in mid-Jan 13. Syrian, Palestine Liberation forces captures several sites in rural ... 14. Obama's mess: Cuba's thanks 15. Malacaang hails late NEDA chief Paderanga's contributions to PHL ... 16. Palestinian Authority joins Hamas in declaring Tel Aviv gunman 'a ... 17. Iran's General Soleimani promises 'further support for Palestinian ... 18. How to Thrive Supernaturally if the Economy Crashes 19. United Brings Free Snacks Back To The Domestic Economy Flight ... 20. World Bank says Chinese economy to slow to 6.75% growth 21. 5-Minute-Interview: I was chosen to shake Obama's hand in KU 22. Obama calls on Sen. Paul to drop objections to tax treaties 23. Microsoft Update Aims To Fix Surface Book And Surface Pro 4 Issues, But Users Still Frustrated 24. Microsoft leads in annual global B2B ranking 25. WATCH: Judge Jeanine Only Needs 6 Words To Destroy Obama's ... 26. One of Microsoft's most popular products is finally coming to ... 27. White House rips 'obsessed' GOP for trying to question Obama on ... 28. Microsoft sets up data centers in Germany amid US surveillance concerns 29. Start-ups could lead economic transformation through new tech 30. Francois Hollande pledges to 'redefine' the French economic model ... 31. Obama sips water in Flint, tells residents it is safe 32. As the US economy grows only the unexpected can halt an interest ... 33. Microsoft's new chatbot wants to hang out with millennials on Twitter 34. Barack Obama: Aretha Franklin 'captures the fullness of the ... 35. US inflation turning corner; factory output rises 36. Profit From The No. 1 Threat To The Global Economy 37. Economy created 160000 jobs in April 38. Sorry, Obama: We need a real declaration of war on ISIS 39. Wyoming's economy dominates budget hearing talks 40. Surface Phone Release Date Rumors: Will Microsoft Mainly Target ... 41. Microsoft interrupted a live broadcast to recommend Windows 10 42. Obama vows to protect religious minorities at home and abroad 43. Stop destroying the economy, Uhuru tells Cord 44. Is Obama economy in crash mode now? 45. Narwhal Capital Management Has $7592000 Stake in Microsoft Co ... 46. Around the world with Santa, Google, and Microsoft 47. Connecticut High School Teacher Earns Top Education Honor From ... 48. Japan's Economy Grows Faster Than Expected, but Outlook Weak 49. Market sentiment on UK economy turns sour 50. UK economy could be in stronger shape if Bank of England had cut ... 51. Japan to hold emergency meeting over Brexit 52. Obama to make historic first presidential visit to Hiroshima 53. Microsoft Lumia 950 Review: Can a Smartphone Be Your PC? 54. Elisabeth Hasselbeck Blames Obama For Trump's Proposed Muslim ... 55. Slower global economy hits GE earnings in 2015 56. President Obama: I Won't Speak at Malia's Graduation Because 'I'm ... 57. Microsoft aims to become more gender-inclusive with first Hack for ... 58. Google drops Chrome support for older Microsoft and Apple OS 59. Microsoft gained a couple of allies for its Windows Phone 60. Financial disruptions distract us from progress in rebalancing real ... 61. Canada calls on UN to review Palestine human rights appointment 62. Asus Transformer 3 Pro vs Microsoft Surface Pro 4: What's the ... 63. New HP Chromebook 13 for Businesses Integrates with Microsoft ... 64. Trump's claim that no foreign leader greeting Obama was 'without ... 65. German economy powers up as Italy’s debt pile grows 66. VIDEO: Palestinian photo-journalist finally allowed into UK to tour ... 67. Obama's fragile climate legacy 68. Russia's financial market facing investment inflow over last 6 months ... 69. Scarborough: Obama has 'rigged' FBI's Clinton probe 70. Expand skills base to help economy - Ramaphosa 71. Microsoft sheds more light on what's going down at this year's E3 72. Microsoft received more than 500 requests to take down revenge porn 73. Southern Alberta food banks feel pressure of slowing economy 74. Australian Treasury Sec. Fraser: China is a risk to global economy 75. Govt says economy remains strong despite global volatilities 76. The Push to Help Uber and Other Gig Economy Workers 77. Obama recommends extending phone subsidy to broadband 78. Hamas: Judea-Samaria the geographic key for 'freeing Palestine' 79. Microsoft agrees to store customer data in Germany 80. Obama to Campaign With Clinton as FBI Probe Looms 81. Microsoft Skype Teams Up With Paul McCartney for Love Mojis 82. RELEASE: CAP Report Shows How Strengthening the Palestinian ... 83. What will be Michelle Obama's legacy? 84. Obama: Immigration stands as most glaring failure 85. Pro-Palestinian Group Hands Out Fake NYT to Criticize 'pro-Israel ... 86. President Obama Presses Congress To Fund Zika Virus Prevention ... 87. Microsoft Windows boss says Microsoft has won the PC battle but ... 88. How Will China's Economy Fare During the Rest of 2016? 89. Economy doesn't warrant rate cut 90. Nigerian economy, entrepreneurship and banking 91. China posts slowest quarterly growth on record: govt 92. Obama digs in on plan to close Gitmo prison camp - VIDEO: President Obama to present Congress with Gitmo plan ... 93. Mizuho, Microsoft Japan Trial Blockchain System for Syndicated Loans 94. Get Your Countdown Clock For The End Of Obama's Presidency 95. Economy minister launches PL's Kwalita Malta project 96. RBA's Stevens Says Post-Boom Economy Looks `Quite Respectable' 97. White House on lockdown with Obama inside 98. Henrik Lundqvist's Favorite Fashion Things, and Will Obama Ever ... 99. Uber-like car repair business sees growth despite economy 100. Palestine: N. Korea Provocations Cannot be Tolerated 101. UN voices concern over stalled Israel-Palestine talks 102. OMVS: Flow of Venture Capital Into Shared Economy Companies Validates Business Model 103. It's Not Every US Election That Can Destabilize The Economy 104. Obama Faces War Over Court Pick, Whether Pragmatic or Partisan 105. Obama: US Will Send 250 Additional Military Personnel To Syria 106. Republican ex-rocker Ted Nugent: 'Obama is a psychopathic ... 107. Number of Palestinians Worldwide Exceeds 12.37 Million, says Statistics Bureau 108. Microsoft chairman John Thompson returns to FAMU 109. Terror Groups Planning 'Sophisticated and Coordinated Attacks' 110. Israel economy bounces in Q4 as consumers spend 111. / 73789 saskatoon and area economy graded b 112. Cookies on the BBC website 113. The 20 best Xbox One games to play today 114. Microsoft Band 2 adds weight tracking, GPS power saver 115. Baltimore City, county partner to stir city's economy 116. President Obama Was Nice Enough to Help Steph Curry with His ... 117. Google, Facebook, Microsoft & Twitter expected to file motions ... 118. Celtic Tiger roars back as Irish economy soars 119. Windows 10 ecosystem review (Windows 10, Phone, Xbox) 120. Recession-proofing Vegas: Preparing our economy for the next crash 121. China to keep policy support for economy to cope with challenges 122. Hot on Amazon's heels, Microsoft expands Azure to Canada and ... 123. US Economy: On A Knife's Edge 124. Memorial held for the six Palestine flooding victims 125. Office Insiders treated to new Insider build, can level up their querying skills 126. How troubles in the global economy may affect your retirement 127. Microsoft acquires music app Groove 128. Palestine School Happenings 129. Obama protects Clean Water Act from GOP effort 130. President Obama Visits Busboys and Poets on 14th Street 131. Obama unveils record $4.1 trillion election-year budget 132. President Obama's sister coming to Sacramento State to teach peace 133. How Can The Microsoft Surface Pro 5 Top The Surface Pro 4? 134. Jonathan Aberman: If not capitalism, then what? 135. Obama urges optimism for 'anxious' US 136. Police identify Palestine High School parking lot shooting suspect 137. Microsoft revokes free copies of Fallout 4 downloaded from Xbox Store 138. How Microsoft moves profits offshore to cut its tax bill 139. Obama rents 'tropical palace' for Hawaiian Christmas 140. China's stock market doesn't reflect the economy 141. NYT: Obama Misled Public on Iranian 'Moderation' to Pass Nuclear ... 142. Property firm warns on Brexit threat to London economy 143. Toyota expands Microsoft partnership in connected vehicle services 144. Hong Kong economy shrinks in 1Q on global economic weakness 145. Obama: US in 'better place' than when he graduated college 146. Microsoft adds Envision conference for business leaders, to be held ... 147. Negative gearing changes good for economy if home prices fall ... 148. Labour must get real about the economy: is Corbyn's economic ... 149. Microsoft to follow Amazon into UK with cloud hosting service 150. Obama Ordered Agents to Delete Records of Muslims With Terror ... 151. Obama Admin Confirms 22 Clinton Emails Contain Top Secret Info 152. Obama: Golly, Sanders is kind of a one-note guy 153. Hoeven undecided on Obama's ND judicial nominee 154. Microsoft sues US government over data requests 155. Barack Obama Is a College Graduate 156. Obama: Time with your kids is what matters 157. The Labor Prospect: Gig Economy Skeptics 158. Obama's Web Rules Upheld in Win for Google, Loss for AT&T 159. Microsoft exec teases Xbox One party feature, coming soon? 160. Only one in five Lebanese optimistic about economy 161. Obama will not attend Muhammad Ali's funeral 162. Brexit: what is in store for the UK economy? 163. Microsoft hosts cloud roadshow 164. Obama to address Cuban people in Havana speech 165. Microsoft (MSFT) Showing Signs Of Being A Momo Momentum Stock 166. Microsoft Corporation: Facebook’s Loss Is Microsoft’s HUGE Gain (MSFT) 167. In Obama's America, Nobody Can Buy a Good Tomato 168. Kerry Boosts Iran's Economy 169. Palestine: 68 years of resistance 170. Obama Frees USS Cole Bombing Terrorist 171. now reading: Roosevelt's Words Echo as Obama Heads to Hiroshima 172. Microsoft Selfie app brings intelligent enhancements to self-portraits on iOS 173. Harder now to retool Singapore economy 174. What The Drop In Commodity Prices Means For The U.S. Economy 175. Microsoft Black Friday 2015: Top Deals Roundup 176. Brexit's Impact on Global Economy Depends on Leaders 177. Microsoft Posts, Then Pulls, Page Detailing Extensions For Edge 178. Please Consider Donating to Intifada Palestine 179. Obama Didn't Mention Deportation Raid Rift In State Of The Union 180. Bangladesh economy could grow 8 pct in next four years - WB ... 181. The rise of the portfolio economy means starting a business is no ... 182. Separate politics from economy, say CZI 183. Now Available in the Microsoft Azure Marketplace, Jitterbit Rapidly Connects Azure, Dynamics, SQL Server and More to ... 184. Microsoft Surface Pro 4, Pro 3 Price Discounted By $100; Free $200 ... 185. House Will Vote Tuesday to Override Obama's Veto of Bill to Defund ... 186. President Obama's biggest leadership failure 187. Trump's challenge to Obama on Muslim sports heroes backfires 188. Southern Tier $500M economic award to be boon for Cornell 189. Obama's Vietnam Trip Follows Controlled Parliamentary Elections 190. Christie On Obama: 'This Guy Is A Petulant Child' 191. Global economy faces more risks amid sluggish recovery 192. / The Spirit of Nelson Mandela in Palestine: Is His Real Legacy ... 193. Nobel Prize winner tells Obama to stay away from Argentina on US ... 194. Join us at the Microsoft Store for this week's GeekWire radio show ... 195. Microsoft has created its own FreeBSD. Repeat. Microsoft has created its own FreeBSD 196. Inside the WHCA Dinner: Standing Ovations for President Obama's ... 197. Obama Counts on Law Enforcement to Popularize Smart Guns 198. Invest in Infrastructure to Boost Jobs and the Economy 199. Economy will slump before rising again - PSFU 200. Epic's Tim Sweeney offers some ideas on how to turn Microsoft's ... 201. VIDEOS: Worst Mining Disaster in Brazil's History Devastates Village ... 202. Microsoft’s Strategy to Launch Surface Bore Fruit 203. Microsoft is building its own SIM card for Windows 204. FACT SHEET: President Obama Announces New Actions to Reduce ... 205. Microsoft's cyber security strategy: How it is using Bing, Azure and machine learning to build a secure platform 206. Obama’s Supreme Court pick is an ideal nominee in these divided times 207. Microsoft to open UK data centres 208. How Long Will China's Shifting Economy Slow Growth For? 209. REPEAT: Hootsuite Integrates With Microsoft to Increase Customer Social Productivity and ROI 210. Ex-Minister blasts Soludo for claiming Jonathan mismanaged the ... 211. Obama cements drone-centric counterterrorism strategy with Central ... 212. Opposition to all things Obama at heart of GOP splintering 213. World Bank sees Malaysia economy picking up in 2017 214. There's Some Bad News From The Economy 215. Obama tells graduates that walls won't solve ills 216. A month after raising rates, Fed faces darker global economy 217. Latest Israeli Economic Figures Point to a Weaker Outlook 218. Obama Disturbed at Political Rhetoric Against Muslims: WH 219. Obama, first lady review design proposals for presidential library 220. Obama Says Constitution Empowers Him to Make Court Nomination 221. Microsoft promotes the Surface Dock in new blog post 222. Changing the landscape of East Palestine football 223. Lumia who? Microsoft's latest earnings release puts cloud in the ... 224. Obama calls for a balance in privacy, national security 225. The Most Fuel-Efficient Cars 226. Xbox 2 Specs, Features & Release Date: Microsoft Raises Bar ... 227. Why Are Voters Angry? It's the 1099 Economy, Stupid. 228. Obama calls Orlando nightclub shooting an attack on all Americans 229. EconomyWhy this oil price crash is bad for the world economy ECB 230. Microsoft Windows turns 30: How one piece of software changed the world 231. Staying afloat in a stormy economy: Local businesses steer a new ... 232. Trinh Nguyen Vietnam's rating rises, but economy is still shaky 233. Better late than never: LGBT advocates embrace Obama's ... 234. Palestine's resistance Christmas tree showcased in Jerusalem 235. Will US economy shake off its latest deep freeze? 236. US: Anti-Israel adverts on Massachusetts transport upsets Jewish groups in Boston 237. US Supreme Court blocks Obama carbon emissions plan 238. Considering regulation of short-term rentals in light of the sharing ... 239. Obama dedicates national monument for women's equality 240. Uganda: Developing Economies Versus US Monetary Policy 241. Reforms Strengthen Indonesia's Economic Resilience 242. Thailand Eager to Imitate South Korea's Creative Economic Policy 243. Box Announces New Integrations With Microsoft 244. Drownproofing for a Knowledge Economy 245. Microsoft sues US government over gag orders on customer data grabs 246. Short term and long, Leave vote is bad news for Ireland's economy 247. Israel-Palestine: what's next? 248. Microsoft hires go-go dances for XBOX party 249. John Oliver Slams Republicans for Attempting to Block Obamas ... 250. Microsoft's Fetch App Identifies Your Dog 251. Lord Meghnad Desai bats for abolishing Income Tax 252. Russian economy, not jet tensions hit Istanbul's Laleli exporters 253. Microsoft's stock selloff accounting for half of the Dow's decline 254. Pfizer vs. Obama: The Treasury Tries To Stop Pharma's Tax Dodge 255. Latest in Economy 256. Can Rouhani deliver on the Iranian nuclear deal's economic promise? 257. Obama to urge graduates to pursue progress in changing world 258. Sen. Warren calls out Obama for not being tougher on corporations 259. Israel reportedly preparing plan to boost Palestinian economy 260. US economy grew at 1.4 pct. annual rate in 4th quarter, helped by ... 261. Pentagon's PCs are getting a major upgrade 262. Microsoft expands its commitment to Apache Spark big-data ... 263. With austerity light on taxes, Cyprus sees economy rebound 264. A slowing economy will help Trump and hurt Clinton 265. Donald Trump's Closing Statement Wasn't About The Economy Or ... 266. Obama goes it alone in his last State of the Union 267. Microsoft Surface Pro 4 review 268. Japan to looks to start adopting international car fuel economy ... 269. Microsoft adds Dynamics CRM Online, completes its cloud services portfolio from local datacenters 270. Pakistan's economy to grow by 4.5 percent in 2016 271. Microsoft Corporation (MSFT): There's a Comeback in the Distance 272. Stressed Out: Tension a Silent Killer for Sweden's Economy 273. US economy grew faster than expected in third quarter 274. Australia must bite bullet on economy 275. Economy Grew 2% in Third Quarter, Led by U.S. Consumer Spending 276. Factory Slumps in US and China Heighten Global Economy Fears 277. The List: President Obama Jots Down His Favorite American ... 278. Obama to return to U. of C. Law School to push for Garland 279. Chinese vice premier to visit Egypt, Israel, Palestine 280. Markets Are Glum About the Economy, But What If They're All Wrong? 281. Obama Admin Wants To Restart Failed Program Training Syrian ... 282. Athens finds vibrancy can revive before economy does 283. Football 'feelgood factor' expected to boost economy 284. Barack Obama makes security address after San Bernardino ... 285. Microsoft launches Lumia 950, 950 XL; priced at Rs 43699 and Rs ... 286. Microsoft and Sprinklr announce partnership to provide cloud-based ... 287. China Signals More Stimulus After Top Meeting to Assess Economy 288. PMI indicates private sector in a fix 289. The implication of Obama's latest clemency fest 290. Obama issues pardons, commutations 291. Russian Economy Adapts to Western Sanctions, Time for Removal ... 292. Economy Keeping Lid on Bank Revenues: Fmr. Wells Fargo CEO ... 293. Investor Insight: How Serious Are Brazil's Economic And Political ... 294. Why Microsoft Bought SwiftKey 295. Brazil's economy keeps contracting 296. Impact of layoffs on Carlsbad economy, services great 297. Obama Releases Statement On National Day Of Prayer 298. Obama: No signs Orlando shooter was part of larger plot 299. Apple CEO hails China's app economy following Didi investment 300. Brexit Poses a Double Threat to Britain's Economy - An Initial Shock ... 301. Now what could Microsoft be planning with 'surfacephone.com'? 302. Feingold Challenges Johnson To Oppose Obama Pacific Trade Deal 303. Obama Claims Global Warming Will Literally Drive People Crazy 304. Gale Products Add Microsoft Office Functionality 305. Palestine seeks India's participation in West Asia peace process 306. Obama worries Trump damaging US reputation 307. Economist at Royal Bank of Scotland Group, on UK economy and ... 308. No direct impact on Israeli economy from Brexit - Netanyahu 309. Microsoft patches critical vulnerabilities in January update 310. Here are 2 completely different ways of thinking about the exact same chart 311. Economy Grows at ‘Modest’ Pace as Job Market Tightens, Fed Says 312. Olympics to give battered Brazil economy only limited boost: report 313. Sweden Seen Leaving Difficult Choices for Later as Economy Booms 314. Obama touts economy, knocks rivals in final SOTU address 315. Palestine, Sabor a Pasion featured travel destinations 316. Microsoft opens NY studio to showcase HoloLens headset 317. Obama administration officials warn lawmakers over Iran sanctions 318. Microsoft Lumia 950 XL: One platform to rule them all 319. Obama Says He'd Like To Put Nordic States In Charge 'To Clean ... 320. Sobering Truth: Ukrainian Economy Addicted to IMF 'Aid' 321. Harvard donor stops sponsoring events after pro-Palestine 322. Democratic Candidates Blast Obama Administration Plan To Deport ... 323. Microsoft bans stupid passwords 324. Obama seeks $4 billion to reboot tech education 325. Percentage of women at Microsoft dropped 2 percent in the past year 326. 'Saudis Did 9/11' is a Zionist Ruse 327. Microsoft's outlook 328. Syrian refugees to boost BC economy, SFU students conclude 329. How Saudi Arabia plans to shake up its economy 330. CloudLock Shares Insight Into Growing Cybersecurity Market in MassTLC 2016 State of the Technology Economy Report 331. Michelle Obama hosts Iranian new year's feast 332. How the US should handle Saudi Arabia's economic threats 333. Policy institutionalization, bane to economy devt Minister 334. Cyanogen OS now serving Microsoft ads in its Android UI 335. Obama's DNC Speech Moved Indoors Over Weather Concerns, Leaving Thousands Out In The Rain 336. Microsoft buys a tiny Italian startup to boost one of its biggest bets 337. Obama love story warm and sweet 338. Palestine and the anxiety of existence 339. It's time for a Palestinian State 340. Obama: Would be a 'mistake' to send troops to Syria 341. Obama, Yellen to Meet Monday 342. Obama administration says HB2 violates federal civil rights laws 343. President Obama signs Oklahoma disaster... 2min 344. Alibaba's strong earnings seen as good news for China's economy 345. Steady economic growth forecast for Canada in 2016: TD 346. George Soros warns of 'serious consequences' of Brexit for economy 347. France considers recognition of a Palestinian state 348. Microsoft achieves major milestone by enabling Node.js to work with ... 349. Rush Limbaugh: Obama's Foreign Policy 'Inept, Incompetent ... 350. G20 Leaders: Brexit a "Shock" to World Economy 351. Full text: US President Barack Obama last State of the Union Address 352. Microsoft Previews 'Halo 5' Warzone Firefight Mode 353. Obama would veto changing Chinese Embassy address in dissident’s honor 354. The economy is ready to handle higher interest rates 355. Dell’s new XPS laptops get a 10 percent discount in the US today 356. African economic summit ends with calls for investment 357. Software adds more than $1 trillion to US economy, new report says 358. Obama Sees No Cause for Panic Over Zika, Yet Asks for Nearly $2 ... 359. Bio-economy: Sabah's niche in biochemical 360. Fallout 4 Update: Microsoft reveal new Xbox One news, Bethesda ... 361. Obama: SCOTUS nominee will be 'indisputably' qualified 362. Economy is top issue with North Dakota GOP governor hopefuls 363. Obama signs Africa electricity initiative into law 364. The Obama/Clinton Jihad Against The Global LGBT Community 365. Obama's 'work-to-welfare' scheme to create 'new economy' 366. India beats China as world's fastest growing economy in 2015 367. Something puzzling has been going on in the economy, and we now ... 368. What would a Brexit mean for the Australian economy? 369. The Obama Uncertainty Principle 370. Obama's patriot act: The President is obviously overcompensating ... 371. PA claims Israel to blame for Brussels attacks 372. Obama Cries During Gun Speech 373. Argentina's economy just got a 7-day makeover 374. Permanent R&D Tax Credit Long-Fought Win for U.S. Economy ... 375. The real prize in the Trudeau-Obama bromance? The world is ... 376. Why Is Obama Prosecuting Medical Marijuana Cases in Defiance of ... 377. Supreme Leader's messages highlight importance of economy 378. Google launches Cardboard SDK for iOS right at the start of ... 379. Apple Still Makes Users Happier than Microsoft Does When It ... 380. Puerto Rico's Economic Crisis in Five Charts 381. Ex-Microsoft PR Head Ali Perkins Takes On Global Comms Role At ... 382. Microsoft Neural Net Shows Deep Learning Can Get Way Deeper 383. 5 reasons Microsoft may never give up on Linux patent claims 384. Microsoft's BITS file transfer tool fooled into malware distribution 385. Republicans blast Obama's stay-the-course approach to ISIL 386. Microsoft and Facebook plan to lay internet cable under the sea 387. Uber Drivers and Others in the Gig Economy Take a Stand 388. UAE non-oil economy recovers more ground in March 389. Microsoft announces grants for 100 nonprofit partners to fuel ... 390. Trump suggests Obama to blame for Ferguson unrest in new video 391. Opinion Journal: It's the Economy, Stupid 392. Jack Welch says Obama's 'wacky' climate-change agenda hurts the ... 393. Spending Review: The green economy reaction 394. Saturday, 23 Jan 2016 395. Arabnet, Smart Dubai to highlight smart economy, digital business ... 396. Obama looks to defend handling of Islamic State 397. Obama's Genocide Declaration Is a Big, Fat, Juicy Nothing Burger 398. Humane Society: Obama has effectively ended 'canned' African lion ... 399. LAUSD threat could cost Southern California economy millions 400. Delay In Passage Of GST Bill Costing The Economy, Says BJD 401. Clouds over German economy as industrial output, exports fall 402. FBI Director Goes Where Obama Doesn't: Yes, It Is 'Radical Islamic ... 403. Obama's plan looks to revolutionize healthcare 404. Obama on Science: 'It Is Fun. I Love This Stuff' 405. Insight Achieves 16 Microsoft Solution Competencies 406. President for regional policies to implement Blue Economy 407. Donald Trump Jabs Barack Obama for Taller Fence Around White ... 408. FedRAMP Picks Microsoft Azure for High-Impact Pilot Program 409. America's Go-To Economic Indicator Is Blunt and Obsolete 410. Zimbabwean govt's approach to mining has 'crippled' economy 411. Microsoft releases Azure template for WordPress/MySQL 412. Microsoft is changing how it invests in startups and has a new leader to help 413. Krauthammer: 'Impeachable' if Obama Actually Prosecutes Climate ... 414. Parliament seeks Greece's recognition of Palestine 415. Green shoots? Maybe, but they need watering 416. Workers suffering from mismanagement of economy Nana 417. How to Maximize the Benefits of a Platform Economy 418. Moore's Law at 50: The performance and prospects of the ... 419. Microsoft to Ship VR Headset HoloLens from March End 420. Obama reveals favorite Game of Thrones character 421. Israel to Shut Down Rights Group Headquarters in Nablus 422. Obama praises Supreme Court ruling on contraception mandate 423. Obama, Trudeau drop gloves over hockey 424. SOCCER ROUNDUP: Guzman, Gierkey lead Palestine boys past ... 425. Uber, Lyft Driver Settlements Signal Gig Economy Victories Ahead 426. Congress to vote on Zika funding; bills fall far short of Obama's request 427. Anchors Away -- Obama Sinks US Navy 428. Obama to make history, stirs debate with Hiroshima visit 429. France will not 'automatically' recognise Palestine if peace plan fails 430. Egyptian MP: Netanyahu mediated between Obama and Sisi ... 431. Brazil's economy sheds 130,629 jobs in November 432. Malia Obama Is Going to Harvard After a Year Off 433. Swiss ZEW index of economic expectations plunges 434. Microsoft Xbox Store Countdown Deals 435. Thailand's Economy Expected to Grow 2.5 Percent in 2016 436. Microsoft cautions of phishing attacks by scammers posing as fake social media sites 437. State agrees: Portland traffic stalls economy 438. Mediaite: Sarah Palin Incites Hatred by Lying About Obama's ... 439. Why President Obama's cyber security plan is one (big) piece of the ... 440. The Economist explains 441. Industrial data underline UK's struggle to rebalance economy 442. Cyber attacks: Bulgaria joins Microsoft 443. Microsoft Surface Book is 'sort of deluded' 444. Australian Church Denies Belief That Jesus Was Palestinian 445. Old Economy celebrates 100 years 446. London's trees worth 6.1bn to capital's economy 447. Former Microsoft Press Play team members get together to form ... 448. Governors not falling for Obama's ploy on Muslim refugees 449. Vladimir Putin insists Russia's economic crisis has peaked despite ... 450. 3 arrested in shooting of 55-year-old Palestine man 451. One glance at the EU's dismal trade policy simply destroys the ... 452. Microsoft 'holoportation' lets you share a room with a faraway friend 453. Leaders at G7 summit in Japan to grapple with sluggish world ... 454. Microsoft helps Reed College to add computer science program 455. Box to file amicus brief in support of Apple alongside Facebook ... 456. Obama Seeks to Expand 401(k) Use by Letting Employers Pool Plans 457. President Obama Does For Texas What Republicans Are Refusing ... 458. Planning Problems in Palestine 459. Donald Trump's deportation plan could shrink economy by 2 percent ... 460. Duterte and the economy 461. How Satya Nadella Rebooted Microsoft's Corporate Culture 462. Microsoft confirms acquisition of Secure Islands 463. UK economy grows by 2.2% in 2015, 0.5% in Q4: data 464. Bank of England warns EU exit likely to hurt UK economy 465. 'Backbone' of Orange's economy shuts down 466. What does the restaurant boom say about the economy? 467. Strong economy leaves room for higher minimum wage hike: minister 468. Obama sends more Special Forces to Syria in fight against IS 469. Slower growth new economic reality, Bank of Canada says 470. Obama torches Trump at his final Washington correspondents' dinner 471. Malicott: Economy bright through growth and diversity 472. President Obama's visit Tuesday could disrupt your drive 473. Obama's 'farewell tour' hits London 474. Netflix's new Windows 10 app embraces Microsoft's universal dream 475. Microsoft (MSFT) Office 365 Planner Preview Available Now 476. Obama administration to forgive student loans of 400000 disabled ... 477. Microsoft Edge will halt Flash objects to increase performance, consume less power 478. Obama urges 2016 graduates to shun fear, seek innovation 479. Australia economy beats all forecasts to reach 3% growth 480. Sasha Obama Met Ryan Reynolds and It Was Adorable 481. One person arrested in Monday night Palestine shooting 482. Obama Announces Intent to Nominate Replacement for Scalia 483. Art resists war 484. The Troubling Historical Anniversary That Falls During Obama's ... 485. Microsoft hails software as driving force behind strong financial results 486. President Obama praises Villanova at the renamed 'Blue and White ... 487. Sexwale kicks up storm by 'undermining Palestinian cause' 488. Microsoft-LinkedIn deal: CEO Jeff Weiner tells employees it’s the best thing for LinkedIn. Read his email 489. 'Liars and hypocrites': Obama expresses regret for US policies ... 490. Economy could be undermined 'unless working class rough ... 491. Wider Image: Palestinian swimmer glides past obstacles to reach Rio Games 492. Microsoft readies public preview of new Azure Information Protection ... 493. Don't blame the economy for China's latest market meltdown 494. Obama Bans US Imports of Slave-Produced Goods 495. Obama urges Americans to 'not succumb to fear' in fight against Isis 496. Microsoft Co. (NASDAQ:MSFT) Receives Average Rating of "Buy ... 497. Midwest economy appears stuck in the doldrums, index suggests 498. Florida economy grows beyond trade and tourism 499. First on CNN: In TV spot, Cruz calls Rubio 'the Republican Obama' 500. Spain economy takes hit with Florentino Perez spendthrift promise 501. Conference Held On Implementing A Climate Economy In Vermont 502. Deep-dive review: Microsoft's Lumia 950 phone introduces mobile ... 503. Political Risk Outlook: How Will Peru's Economy Perform in 2016? 504. Why Hamas resumed ties with Iran 505. Trump's Trade Policy Is a Big Loser for the U.S. Economy 506. Microsoft's 'Teen Girl' AI Experiment Becomes a 'Neo-Nazi Sex Robot' 507. HCL launches IoT centre with Microsoft 508. Biggest Risk to Global Economy in 2016: Oil Volatility $20 to $80/Bbl 509. Obama’s Last State of the Union Address Aims to Set Tone for ’16 Campaign 510. Amazon and Microsoft to Face Off in Cloud Computing Space 511. You can now create Skype meetings right from Microsoft Outlook for ... 512. Economy puts aside post-mining boom blues 513. Palestine ready to State its case: Wildcats shooting for success at 7 ... 514. US economic growth revised upward 515. Microsoft Outlook comes to Android Wear smartwatches 516. Economy will get much worse 517. Referendum debate: Would our economy be better or worse off if we ... 518. Why the US Economy's Growth Slowed Sharply in the Fourth Quarter 519. Brunei's economy slips 0.6 pct in 2015 520. Appeals court delays action on Obama's carbon emissions plan 521. Live: Yellen Speaks on the Economy and Monetary Policy in ... 522. Microsoft to kill off Internet Explorer 8, 9, 10 next week 523. Women Could Boost UK Economy By 170bn 524. Microsoft upgrades Windows Defender to better combat new malware threats 525. Two Israelis Killed, Two Injured in Tel Aviv Stabbing 526. Weak Rural Economy Hits India's Gold Appetite 527. Shadow Economy, Competitiveness, Relations with the EU and ... 528. Cruz campaign slammed for very fake-looking 'Photoshop' image of ... 529. Scottish economy shows 'worrying signs of distress' 530. Philippine economy to top ASEAN-5 in 2016 IMF 531. McDonough Unveils ICEhouse, Designed to Illustrate Innovation ... 532. Uh-Oh! McConnell and Grassley to Meet with Obama on SCOTUS ... 533. Obama Wants To Keep Pressure On ISIS, Considers Withdrawing ... 534. Liberia: Despite Lack of Competition - 'Liberia's Economy Is Market ... 535. New report on Egyptian economy paints bleak picture unless ... 536. Budget 2016: Took steps to improve rural economy, says Jayant Sinha 537. Microsoft Flagship Store and littleBits Bring Kids a Summer of Inventing 538. Obama On Brussels Attacks: 'We Must Be Together' To Fight Terrorism 539. Microsoft asks Outlook early adopters to join waiting list and cross their fingers 540. Obama Calls Out America's 'Free Rider' Allies 541. Russian lawmakers to consider bill on raising retirement age for ... 542. Obama Strikes Heisman Pose With Alabama’s Derrick Henry 543. Report: Obama Readies Attacks Against Trump 544. Obama announces new steps to curb gun violence 545. Elections are historically bad for Kenya's economynext year will ... 546. Malaysia's Economy To Stabilise In 2nd Half 547. Microsoft 'terrorist content' policy: What's restricted and what's not 548. Obama: 'We Are Fortunate to Be Living in the Most Peaceful...Era in ... 549. Bernie Is Speaking the Truth About Israel-Palestine 550. Australian PM calls July 2 poll amid economic slowdown, instability 551. Republican proposes defunding the Department of Justice to block ... 552. Microsoft is bringing Windows 10 and Office 365 to your car's dashboard 553. Tuesday's Vital Data: Microsoft Corporation (MSFT), Home Depot Inc ... 554. Palestine pleads for support from world's Muslims 555. Swedish minister punished for Palestine stance 556. Microsoft (MSFT) - Xero Integration Makes Business Decisions ... 557. Cloud reboots Findlay’s tech industry 558. Minnesota-based companies struggled on the stock market in 2015 559. Obama to visit Flint to survey water crisis 560. Step into the tiny Holy Land in Lucedale 561. Kendrick Lamar to perform at President Obama's Fourth of July ... 562. China shoppers take up baton as pain deepens for old economy 563. Microsoft's New App Fetch! Tells You What Kind Of Dog You Are ... 564. In the new geo-economy, TPP fails | Bangkok Post: opinion 565. UN International Day of Solidarity with Palestinian People at Delhi 566. UN envoy urges Obama, Putin to intervene in Syrian peace talks 567. 'Fantastic' Tour de Yorkshire worth 50m-plus to economy 568. Conservative Pundit Ed Morrissey Praises Obama And Reveals ... 569. Obama meets NATO head as Trump derides alliance 570. German Economy Minister says unhappy with expected economic growth 571. #14. Palestine 572. Software Pumps $1 Trillion A Year Into US Economy, But Could Hit ... 573. Turkish economy minister expects central bank to continue rate cuts 574. Microsoft, IBM aim to combat air pollution in China 575. Obama honoring Streisand, Spielberg, Sondheim and more 576. Microsoft in 2015: Windows 10 ruled the most-read roost 577. Obama says GOP leaders - not him - to blame for party 'crackup' 578. Experts Talk Wall Street and the Economy 579. President Barack Obama says US must remain vigilant against terror ... 580. Our economy depends on Kenny being stronger in the face of a dual ... 581. Obama orders flags at half-staff for Nancy Reagan 582. BREAKINGVIEWS-Global economy depends on more than India in ... 583. BCC warn British economy is 'too reliant' on spending 584. Microsoft makes grants to boost worldwide Internet access 585. Obama praises Paris climate deal as 'tribute to American leadership' 586. Israel-Palestine conflict mirrors First Nations issues in Canada 587. We Can't Save the Economy Unless We Fix Our Debt Addiction 588. 10 things you need to know about Africa's economy in 2016, from ... 589. Obama plans $4bn boost for driverless cars 590. China's Economy: Is There Something We Are Missing ? 591. EU Research funding generated 214 million for economy 592. Here's Why the Quantum Break Developers Keep Coming Back to ... 593. Strong economy prompts TSC job fair, Jake Burton replacement hired 594. Obama defends measures to tighten gun laws at town hall 595. President Obama Sets Primetime Speech on San Bernardino for ... 596. Palestine Regional West Campus opens new wing 597. Rate of slowdown in the Northern Ireland economy is the sharpest of ... 598. Russia's ex-finance minister predicts 1.5-2% GDP decline in 2016 599. ScaleArc Recognized as Finalist for 2016 Microsoft Partner of the Year 600. Obama ramps up bid to explain how US will fight extremists 601. Donald Trump: Obama has been 'the gr... 602. Turkey- Free trade makes Turkish exports to Palestine soar 603. Ed Butowsky: Obama 'Doing Everything (He) Can to Destroy This ... 604. The Beginning of a Goodbye to Obama 605. Microsoft Surface Pro 5 May Not Be Released Until After New ... 606. How a Dinner Invitation From Michelle Obama Changed Valerie ... 607. Religion, economy, politics on Chattanoogans' minds 608. Does 'new anti-Semitism' provide an opportunity for Palestinian ... 609. US prisoners leave Iran as Obama hails win for diplomacy 610. Switching to Linux, saying goodbye to Apple and Microsoft 611. Strengthening Maine's rural economy 612. Microsoft's Windows 10 roadmap offers a sneak peek at upcoming ... 613. Obama goes after Trump over 'radical Islam' criticism 614. Greek parliament backs recognising Palestine 615. Hospital wait times costing national economy more than $1B 616. Orthodox Christian Palestinians celebrated Easter this weekend 617. Rick Ross' Ankle Monitor Goes Off During Talk With President Obama 618. Microsoft: Xbox Scorpio exclusive titles will depend on developers ... 619. Wis. Mayor Issues Apology For Obama Comment 620. Historic Vatican accord with Palestine takes effect 621. UAE Rep Office In Palestine Oversees Implementation Of Ramadan Projects 622. Microsoft Debuts Skype for Business, Integrates it in Office 365 with ... 623. Texans First to Flush Obama's Directive on School Bathrooms 624. We just talked to Satya Nadella and Jeff Weiner about why Microsoft decided to buy LinkedIn 625. Assessing the Health of Japan's Economy 626. Obama's New Rationale for $1 Trillion Nuclear Program Augurs a ... 627. Services in economy 628. 2014-15 annual report: Pakistan's economy fared 'reasonably well' 629. Palestine's Islamic Jihad Urges Intifada Escalation on Land Day 630. Xbox One May Update: Will a new Microsoft patch finally deliver ... 631. Microsoft's new Denmark headquarters was inspired by a Bill Gates ... 632. Who were the young Brits who got a shout out from President Obama? 633. Microsoft will alert you if a government hacks your accounts 634. Microsoft goes to battle against terrorists online 635. Black voters see fight over next Supreme Court justice as Obama snub 636. Obama faults US policy as he honours Argentina's 'Dirty War' victims 637. Microsoft announces the availability of Microsoft Forms for Office 365 ... 638. Microsoft publishes disappointing diversity report 639. With Exxon credit reduced a notch, Microsoft is one of two at top rating 640. White House official confirms President Obama 'will NOT be ... 641. After Palestine talk, Harvard donor stops sponsoring events 642. U.S. Economy Continued to Expand 643. Commentary: Trucking: a bedrock of Nevada's economy 644. Cannabis Economy Releases Interview With Former US DAG Coupled With Instant Feedback From Leaders in Canadian Cannabis ... 645. Demaryius Thomas thanks Pres. Obama in person for mom's release 646. Fifty-one Foreign Service Officers Can't be Wrong …..Or can they ... 647. Obama creates council to help ensure smooth transition 648. Microsoft's Android alarm app wants you to rise, shine and selfie - CNET 649. Palestine Today 05 24 2016 650. Obama: Free Trade Has to Be Fair Trade 651. Microsoft Word Flow keyboard goes live and free for all iPhone users 652. Diversity to drive Central Pa.'s economy: Martin Luther King Jr. Day ... 653. Microsoft Adding Wheelchair Option for Xbox Avatars 654. Was Abbas speech just an attempt to dispel poor health rumors? 655. Microsoft updates Privacy Statement, addressing concerns from critics 656. China Indicators Suggest Economy Still Struggling 657. Obama: Time to bury 'last remnants' of Cold War in Americas 658. Obama appoints 'czar' for Flint water response, mayor visits White House - VIDEO: Class action lawsuits being filed ... 659. German Survey Shows Economy Still Robust 660. Obama ditched BlackBerry, but his new device isn't exactly a 'smart ... 661. Bevin asks about deficit; Obama flips script 662. Cyanogen OS 12.1.1 On The OnePlus One Is Promoting Microsoft ... 663. Jerome Corsi: Obama Altered His Muslim Wedding Ring! 664. Rapper Common Says He Would Rap With Michelle Obama After ... 665. Other than cloud, look for this on MSFT earnings 666. President Obama Announces More Key Administration Posts 667. 'Myth-busting' Obama tries to debunk GOP on the economy 668. Obama Has Harsh Words For Black Lives Matter Activists WHILE ... 669. Microsoft had the most talked about conference of E3 2016 670. Giving People Fruits of Modern Economy: PM Modi in Malaysia 671. Saudi prince in charge of economy, defence to meet Obama on US ... 672. Microsoft Oman concluded 'Build Your Business' training program 673. Obama Celebrates as Brussels Burns 674. McDonald's, Microsoft A Sell For Retail Investors After Earnings ... 675. A billion Indians yet to benefit from digital economy: WB 676. Microsoft brings Bash to Windows with new beta build 677. Gun groups expect Obama to tighten rules on firearm background ... 678. Another View -- Steve Forbes Rich Ashooh will lead on the economy 679. Microsoft offers deep look at the user experience of Microsoft Planner 680. Barack Obama publishes his Christmas playlist - listen 681. Trump: 'Hillary Clinton created Isis with Obama' video 682. Obama: Wounds don't end service for US military members 683. Lagarde urges quick action on Brexit 684. Microsoft shares interesting stats from Xbox E3 2016 Event 685. Windows 10's Microsoft Edge Browser Finally Gets Extensions 686. Fox Business Panel Lashes Out At Obama Administration Proposal ... 687. Microsoft lost a lot of women this year. Here's why 688. Users want more controls for new Microsoft Power BI web publishing feature 689. Is Apple The Next Polaroid, Xerox, Syntex, Intel, IBM, Maybe ... 690. Microsoft Updates RAM Requirements for Windows 10 691. Microsoft's Surface phone may launch at IFA this year! 692. President Obama's signing of the Paris Agreement is only good for ... 693. 6 years after BP disaster, Obama administration thinks it has a way ... 694. US economy adds just 151000 jobs in January 695. Obama to hold year-end news conference Friday: White House 696. Microsoft's Surface girds for Super Bowl 697. ISIS is lost - Obama 698. Salesforce's CEO was blown away by Microsoft HoloLens when his ... 699. Road infrastructure will boost our economy Abia 700. With Clinton, Obama to campaign for his own legacy 701. More investment in research will boost the economy 702. How the Economy Is Impacting Your Portfolio, Part 2 703. UK economy showing signs of shock: Osborne 704. DBS predicts 6% growth in Q3 705. Obama's Mideast Plan Faces a New Hurdle 706. Verbatim: Barack Obama on Michelle Obama's Presidential Ambitions 707. Consumer confidence falls as Americans more fearful about jobs ... 708. Dallas Brass coming to Palestine 709. Aid to Palestine promotes peace and prosperity 710. Microsoft tries to predict your future, no flying cars foreseen 711. Stalled economy costing rail jobs, BNSF chairman tells energy ... 712. Obama: 'I'm Not Responsible for Donald Trump, Crackup, Circus of Republicans' 713. Microsoft's Nadella wants to reinvent how we use computers 714. Microsoft reveals Project Scorpio, the Xbox One's powerful, 4K ... 715. Donald Trump promises to attack Obama 'just like I hit Bill Clinton' 716. Poll: Most of GOP base believes Obama is a foreign-born Muslim 717. My Turn: A third way to think about Israel and Palestine, Part 2 718. How the World's View of the Palestine-Israel Conflict Is Changing ... 719. Palestine, Progreso set for 4A boys title showdown 720. China's economy slows amid signs of stabilising 721. Official says Russia imposed no economic sanctions on Ukraine 722. Obama: Democracy at stake in November elections 723. Orlando Attack a Failure of Obama's 'Politically Correct' Policy 724. Collapse of yesteryear brands reflection of state of economy 725. Effects Of The Coming Market Crash On The Economy - And ... 726. Microsoft told potential Yahoo bidders it might back bids -report 727. People Have Faith in Their Finances as Economy Improves 728. Li: HK's economy 'worst in 20 years' 729. Study explores banking contribution to state economy 730. Is this Microsoft party invite the most cringeworthy thing ever? 731. Microsoft quietly unwraps a big-data analytics platform based on R 732. Obama calls on Sen. Paul to drop objections to tax treaties 733. Brandis says government did run on economy 734. CAO recommends unified plan to combat economy woes 735. GOP Debate Showed Marco Rubio's Obama Problem 736. BDS: security company G4S announces plans to exit Israeli market 737. VP Biden: Obama has "more backbone, more character than any ... 738. The floodgates are about to open in a critical sector for Amazon ... 739. The longest wait: my journey out of Gaza 740. As Economy Lags, Hugo Chvez's Movement Fades in Venezuela 741. Is Greece planning to recognize 'Palestine'? 742. Obama Administration Reverses Approval of Dow AgroSciences ... 743. Obama urged not to visit Argentina on 40th anniversary of military ... 744. Why Obama can't catch up with Putin's increasingly bold moves 745. Microsoft releases an update for Extras + Info 746. Petulant, Partisan President Obama Needs a Reality Check 747. Trump's debt plan is probably impossible: Report 748. Microsoft Patch Tuesday kills off Windows 8 and Internet Explorer 8, 9, and 10 749. Malaysia Airlines may launch premium economy service 750. Kendrick Lamar, Janelle Monáe make President Obama's Fourth of ... 751. Palestinian Journalists Bear a Heavy Burden 752. Microsoft Co. (MSFT) Earns AAA Credit Rating from Morningstar 753. Finnish government criticizes Microsoft for job cuts, 'broken promises' 754. Canadian media is ignoring evidence of 1948 Israeli massacres 755. South Korea's economy grows at 2.7% 756. Microsoft earnings light, stock falls 757. Free Speech Is Good for the Economy 758. Iran Threatens the US and the Middle East: Stay Away from Our ... 759. McConnell to Obama: Don't forget that it's illegal to transfer terrorists ... 760. Microsoft Open Sources Visual Studio Code Beta 761. Politics, oil and the economy 762. Microsoft's Bill Gates Says US Needs Limits on Covert Email Searches 763. The world's fastest growing major economy has promised to ... 764. Microsoft sees silver lining in clouded Windows 765. Soft WA economy affects Deloitte result 766. Never a Dull Moment: A Look Back at 2015 767. Will America's economy get dragged into recession? 768. Obama to seek new tax on oil in budget proposal 769. Obama's hypocritical endorsement of Juliana Stratton over anti ... 770. Panama economic growth slows to lowest since 2010 771. GOP seeks to scare off Obama high court pick 772. Why Microsoft (MSFT) Stock is Falling Today 773. Obama raises money with John Legend at Los Angeles fundraiser 774. New Consumers CEO has eye on economy 775. Palestine boys soccer team places third at Wildcat Classic 776. US top court upholds Obama administration electricity markets rule 777. M. Kraus & Company Decreases Stake in Microsoft Co. (MSFT) 778. Arizona economy shifting into faster growth 779. Call of Duty: Infinite Warfare PS4/Xbox One digital preorder bonuses - CNET 780. Obama administration to announce efforts to boost self-driving cars 781. Obama learns that there may be 'two Americas,' after all 782. Congo opens hydroelectric plant in east to jumpstart economy 783. Obama calls Putin for 'intense' talks on Syria, Ukraine 784. Colorado's unemployment rate ticks up and economy slows 785. Jammu and Kashmir's economy should be integrated with Pakistan ... 786. Greenhouse Gas Emissions Are Flattening Out Even As Economy ... 787. Microsoft breaks ground with fully cross-platform gaming 788. Microsoft to Go Beyond Windows with Mobile App Maker Buy 789. The Spirit of Nelson Mandela in Palestine: Is His Real Legacy Being ... 790. Palestinian Police Honors Cop Behind Shooting Attack That ... 791. OP economists' economic forecast: Lacklustre economic growth on the cards 792. Ahead of the Bell: US Economy-GDP 793. UK's economy to become the world's fourth largest 794. Davidson accuses opponents of failing to boost economy 795. Watch: Former Obama Man Just Dropped An Unexpected ... 796. President Obama Says Diplomacy Was Key To Nuclear Deal ... 797. With US Economy In Soft Spot, Fed Likely To Keep Rates On Hold 798. Microsoft’s Band 2 gets an update, reminds you if you’re being lazy 799. Obama Confirms He Can't Pardon 'Making A Murderer's Steven Avery 800. Cruz denounces Oregon militia and Obama on gun control 801. Obama to Push for Democratic Unity in Meeting With Bernie Sanders 802. President Obama Throws In The Towel On Social Security Reform 803. Brexit vote adds to uncertainty over global economy 804. How the sun of Palestine reached a Black Panther in jail 805. Better late than never? Obama won't try this because 'the ... 806. Obama heads to Saudi Arabia, Britain, Germany 807. Barack Obama calls Paris massacre 'outrageous' 808. Sharing economy turns to splitting hotel rooms 809. Turkish taekwondo athlete hopes to fight for Palestine 810. Local Microsoft data centres get ready to tap 'Digital India ... 811. Microsoft Beefs Up Smart Headsets That Help The Blind To 'See' 812. Can Angola's New Steel Mill Save Its Economy? As Oil Prices ... 813. Saving Europe's Economy From Going Down ... 814. Microsoft continues embracing Linux with new Azure certification 815. Rape Survivor & Mom of Two Confronts Obama on Guns: Why Can't ... 816. Counter-Terrorism Expert: Obama's Policies GUARANTEE Another ... 817. Japan: An Economy Of Zeros 818. China Unlikely to Live Up to Its Economic Promises 819. City of Johannesburg gives Palestine a statue of Mandela 820. Biodico Trains Future Bioenergy Leaders To Excel in Green ... 821. Obama Proposes Removing Human Rights Conditions on Aid to Egypt 822. Metalogix, Microsoft Team on SharePoint-to-Office 365 Migration 823. Obama pardons Abe the turkey, China mocks Japan PM Abe 824. Obama says Planned Parenthood shootings show need for gun background checks 825. Quick Reminder That President Obama Doesn't Know How To ... 826. Eurozone economy finally recovers to pre-crisis levels 827. Israel’s cynical new strategy: Reframe Palestine debate as a religious battle, when it is really about civil rights 828. Which -ism is it? 829. Tickets to Obama's speech at UNO to be distributed starting Sunday 830. Israel PM slams French plan to recognise Palestine 831. Microsoft unveils Windows 10 feature to stymie advanced hack attacks 832. AM Roundup: Obama's 'Fast and Furious' Defeat 833. Obama to raise money, golf in Florida 834. AdBlock and AdBlock Plus are available for Microsoft Edge 835. Abbas: Stop global terrorism by ending the Israeli occupation of ... 836. Trump is bad news for the GOP, but he's great for Obama 837. Oil Rout Threatens Vicious Cycle for Economy 838. Microsoft Power BI app adds a popular new feature for Windows ... 839. Referendum will not help EU economy out of the doldrums 840. Russian government's budget commission endorses expenditures ... 841. Turn on GPS Power Saver in Microsoft Band 2 842. Could China's Meltdown Derail The U.S. Economy? 843. After Grim Payrolls, Focus Turns to Economy 844. ECB set to loosen policy to lift sagging economy, inflation 845. The Industrial Internet of Things Will Dramatically Boost the Global ... 846. Microsoft's Triple-A credit under review at Moody's after LinkedIn ... 847. The Latest Pew Report on Race in America vs. President Obama's ... 848. Coastal areas contribute to economic diversification 849. Microsoft Wants to Make XBox Safe for Gamers Who Aren't White Men 850. Obama scolds media for campaign coverage 851. Microsoft is Making Big Moves in VR Space 852. Obama to visit Orlando in wake of nightclub shooting, blasts Trump for anti-Muslim rhetoric 853. North Korea Can't Stamp Out Its Unofficial Economy 854. Modi government's response to feedback on its economic ... 855. Microsoft Band 2 review: Flaws in its intended purpose keep it just ... 856. Obama administration tells public schools to let transgender students use bathrooms of their choice 857. Israel and Palestine: Peace in our lifetime? 858. EU referendum live: Brexit immigration plan would 'wreck economy' 859. Nick Wingfield: Microsoft no more an easy mark for hackers 860. UAE, Jordan, Palestine: Monday first day of Ramadan 861. Low inflation to give biggest global pay boost in three years: study 862. FOX Sports Indiana to replay epic Fort Wayne Snider-New Palestine ... 863. Obama's Anti-Israel Drift 864. Microsoft Has Your Encryption Key If You Use Windows 10 865. Obama looks to stop Trump, protect legacy 866. Obama sets state dinner table for six at unusual Nordic summit 867. Why Microsoft vs. US Govt is a huge deal for cloud computing 868. Sharing economy threatened as insurers unable to calculate level of ... 869. EU referendum live: Cameron says Brexit vote would be economic ... 870. Expert tasks FG on diversification of economy 871. DMA: Data-Driven Marketing Economy Surges 872. Gaza lanterns light up for Ramadan 873. Texas Urges Supreme Court to Reject Appeal on Obama's ... 874. Rolls-Royce car sales plunge in China as economic slowdown and ... 875. Bogor collects Rp485 million aid for Palestine refugees 876. China's 2016 defence budget to slow in line with economy 877. Will California's Booming Economy Pay off in Pupil Spending? 878. Nobel Peace Prize Tells Obama to Cancel Trip to Argentina 879. UAE witnesses 10 years of rapid and sustainable economic growth 880. ASUS' latest Transformers take heavy cues from Microsoft's Surface 881. Microsoft might just be gaining ground on Google in the classroom after all 882. Strangle China's Economy: America's Ultimate Trump Card? 883. The Economy Hub: Why Auckland's new house price boom is a good thing 884. Obama: Turkey Has the Right to Defend its Airspace 885. Cliven Bundy suing Obama and Harry Reid to try and get himself out ... 886. Report: PA security forces arrest Erekat top aide for 'collaborating ... 887. Obama’s gun orders hit with first lawsuit 888. Microsoft announces a whole department dedicated to fighting evil 889. Obama policy hands kids to slave-traders, molesters, killers 890. Five Painful Economic Truths for Korea as Election Approaches 891. Lenovo IdeaPad vs Microsoft Surface Pro 4 But Which Is The Winner? 892. Mountain biking event provides welcome boost for Lochaber economy 893. Obama to address Parliament during summer visit to Canada 894. China Reforms Good for Australian Economy: S&P 895. The Fed headlines busy week of economic news 896. Microsoft is celebrating World IoT Day with the BBC micro:bit 897. White House: Obama updated on Iraqi forces' progress in Ramadi 898. China's Vice President Seeks to Reassure Investors Over Economic ... 899. Microsoft launchs Cortana for iOS Devices Chandler Daily Science 900. In Asia, Obama Takes Softer Tone on Human Rights, Corruption 901. How to Invest in China's Changing Economy 902. Microsoft paid this woman US$10,000 for an unwanted Windows 10 installation 903. Mosti can lead new economy: Minister 904. Brazil's acting president vows to boost stalled economy 905. Obama plans expanded U.S. presence in Iraq and Syria ahead of ... 906. Hacked Emails Reveal NATO General Plotting Against Obama on ... 907. China economy shows positive signs but pressure lingers-premier 908. Dubai urged to develop debt market for global Islamic economy hub ... 909. Obama proposes US$1.1 billion to expand treatment for heroin epidemic 910. gun pledge fires up race for White House 911. Mail2Cloud Now Supports Microsoft OneDrive For Business 912. Barack Obama hails economic successes as unemployment rate ... 913. Obama visits Michigan amid Flint water scandal, Detroit school crisis 914. British exit 'would hit world economy hard' 915. As China's Economy Slows, Ford Is Continuing to Find Growth 916. The real reason Microsoft open sourced .NET 917. Hillary Clinton Goes Beyond President Obama in Plan to Defeat ISIS 918. Avoid economy shrinking at all costs, ANC tells government 919. Latest Windows 10 Insider adds a new feedback shortcut and expands handwriting support 920. Enzo Flojo's Asia On My Mind Sakakini and Palestine on the rise 921. Games With Gold January 2016: Here's What Microsoft Is Giving ... 922. Obama becomes 1st US president to visit Hiroshima bomb site 923. Trump Slams Obama's Deal Making Abilities In New Instagram Post ... 924. Despite good economy, homelessness up 7 percent in Utah 925. ECB official: We can't fix the economy all on our own 926. Health inequalities costing Glasgow economy almost 5billion ... 927. Rubio Says If Obama Could, He Would Take Away Your Guns [VIDEO] 928. Obama eyes 'audacious' use of executive power in final year 929. Economy recovery fragile, low job creation: Manmohan Singh 930. Key Surface Hub and HoloLens staff leave Microsoft hoping to ... 931. Microsoft offers $50 off all Xbox One bundles through December 26 932. Terrorists can't destroy Europe's economy, but they can damage it 933. The best part of the Microsoft Surface Pro 4 is logging in with my face 934. 2-state Israel-Palestine slipping, UN 935. We can treat animals humanely and still grow the economy 936. Obama: Cuba embargo will fall under next president 937. Obama Wields Quiet Persuasion in States to Expand Family Leave 938. Investors Should Listen to Jamie Dimon's China Warnings 939. A Beginner's Guide To The Recent Outbreak Of Fighting In Israel ... 940. Tech Moves: Trulia promotes McLaughlin to chief economist ... 941. Vladimir Putin's Internet advisor wants to tax Apple and ban ... 942. Obama struggles with stance on the death penalty 943. Crews begin clearing clogged drain behind flooded Palestine neighborhood 944. Microsoft adds OneDrive to Bug Bounty program, with rewards up to ... 945. Obama could appoint a Supreme Court justice even if a Republican ... 946. After Ankara Bombing, Fears Loom Over Turkey's Economic Future ... 947. East Palestine man with felony convictions history gets six years 948. Cuba's future economic model in spotlight at party congress 949. Will Obama's Action Create A Market For 'Smart' Guns? 950. MarketResearch.com: The Future of the Sharing Economy 951. Microsoft's E3 2016 presser is at the same time as every Microsoft ... 952. Microsoft Seeing Gains for Azure Active Directory Connect Solution 953. SC Sens. Graham, Scott call on Supreme Court to block Obama ... 954. Indian economic growth gathers steam 955. Opinion: These homebuilding trends are having a major impact on ... 956. Microsoft's Tool Is Designed To Make Us All More Productive 957. Company earnings defy doomsayers and point to stronger economy 958. Obama says both left and right are wrong on Wall Street rules 959. Syria Policy Discontent Unlikely to Be Resolved Before Obama Term ... 960. As Boyish Ben Rhodes Drops Truth Bombs, Obama's Media Mask ... 961. 10 reasons why I don't use Microsoft Edge, and one why I do 962. Algeria: First Participation of Palestine in Oran's International ... 963. Tory Phillip Hammond brands political protesters as terrorists 964. US third quarter growth estimate cut to 2.0% 965. From President Obama to Supreme Court Justice Obama? 966. Lavrov says business associations play important role in solving ... 967. Economic Takeaways From Japan's Production, Spending, Jobs Data 968. Saskatchewan's energy boom town is now the poster child of ... 969. Fragile world economy dampening German growth - EconMin says 970. Hiroshima atomic bomb victims want apology from Obama 971. Obama says he's not a 'big government' liberal 972. WATCH: Morning Joe panel declares Trump's treasonous remarks ... 973. Murdered family's kin doubt Zionists will deliver justice 974. Why is Barack Obama telling us to give up on OUR sovereignty over ... 975. The Republican Candidates Can't Say How Obama Wrecked the ... 976. Microsoft Cybersecurity Advocates for Coordinated Norms 977. Egypt's Sisi reshuffles cabinet 978. HCEF program reconnects diaspora youth with Palestine 979. New Brunswick's economy lost 1100 jobs in January 980. Obama to visit CIA as US weighs next steps on Islamic State 981. Kovaliv's ambitious plans for rebuilding nation's economy 982. India a ray of hope in world economy: Modi 983. Cortana now scans your emails to make sure you're keeping promises 984. Anger as UK moves to ban Israeli settlement boycott 985. Windows 10 release date, features, devices and free upgrade ... 986. Will Microsoft Corporation Launch A Lego-Like Surface Desktop? 987. China's CST Mining embraces digital economy; changes name, lays ... 988. Clinton, Obama, stand-ins emphasize trustworthiness 989. Obama's brave admission about terrorism 990. Efforts to build world economy limited by lack of languages 991. How the Decline of Unions Hurts US Economy 992. 'Jobs, low prices and financial security at risk' if UK backs Brexit 993. Poetic Juctice? Obama Was 1st US President To Vote To Filibuster ... 994. President Obama Makes Historic Trip to Cuba 995. Poll: Obama approval rating highest since 2012 996. This year won't be easy for Russian banks Central Bank's deputy ... 997. By GDP, N.C. had fastest growing large economy in nation 998. Obama administration mulls changes to Cadillac tax 999. President Barack Obama's clean power plan hurts Wisconsin 1000. HoloLens goes to the International Space Station in new video from NASA 1001. Microsoft quarterly profit down 25% to US$3.8b 1002. New bullet train line may warm up northern Japan's economy 1003. Microsoft opens up its Cortana for iPhone beta 1004. How much are Western sanctions hurting Russia's economy? 1005. Microsoft renames Diagnostic Tracking Service to Connected User ... 1006. Microsoft apologizes for its rogue Twitter chatbot's 'wildly inappropriate and reprehensible words and images' 1007. Obama's 'Jetsons'-like vision for the future 1008. Business leaders laud 'rising tide' of vulnerable economy 1009. HSBC posts pre-tax loss in Q4 amid 'seismic' economic shifts 1010. The Economy Is Rigged, and Other Presidential Campaign Myths 1011. Tiny Tots star's dream comes true as Microsoft beckons 1012. Qatar- Minister of Economy Inaugurates Corporate Social Responsibility Forum 1013. Tonight, President Obama joins an illustrious group that counts ... 1014. Microsoft to Provide Free Services for Georgian Start-ups 1015. Hadekel: Improving economic immigration programs crucial to ... 1016. Obama administration bans e-cigarette use on all flights 1017. Perfecto and Microsoft Announce New Mobile Web and App Testing Integrations with Visual Studio and Visual Studio Online 1018. Sports economy no longer riding Canucks bandwagon 1019. Microsoft explains how its augmented reality headset HoloLens is ... 1020. The fantasy of Britain as 'most prosperous economy' 1021. Higher education's contribution to Irish economy tops 10 billlion a ... 1022. Obama to campaign with Clinton in bid to reset race 1023. New University of California Policy Links Anti-Semitism to Anti-Zionism 1024. Obama, a notable Bears fan, compares himself to Aaron Rodgers 1025. China Looks to Rice Cookers to Pep Up Economy 1026. Democrats Press Obama on Debt Relief 1027. Cyber Monday could be draining local economy 1028. Making sense of the DOE Fuel Economy Run 1029. Icra Expects Mild Uptick in Economy at 7.4% in 2015-16 1030. FCC Leaks Potential First Model of Microsoft's New Xbox 1031. Obama pushes Saudis, Gulf allies to step up Iraq aid 1032. Ex-CIA officer facing jail claims Clinton, Obama abandoned her 1033. Samantha Power Nearly Chose the Red Sox Over Barack Obama 1034. Why the 'gig economy' doesn't work for everyone 1035. Five ordinances to know for Palestine code enforcement 1036. South Bay job market and economy remain solid 1037. Obama receives personalized Rutgers football jersey from Ash 1038. Tags: 2016 Elections | GOP2016 | carly fiorina | politicians ... 1039. LI economy will grow slower than nation this year: Panel 1040. Africa: Why the Voice of Africa's Informal Economy Should Be Heard 1041. Microsoft Office 365 Planner App Debuts 1042. BILL CRAWFORD Underperforming state economy thumps state ... 1043. Thanks to Microsoft, small teams can now get Xamarin's IDE and ... 1044. Cartoon: Heng on China's Economy 1045. Obama to mark anniversary of presidential announcement in ... 1046. Brit Hume Unloads on Obama over Cable News/Terrorism Comment ... 1047. Russian economy stalls in May as retail sales disappoint 1048. Microsoft is fighting the DOJ too 1049. Microsoft's Open Source Strategy Is Incomplete Without This ... 1050. US official denies Obama and Erdoan will inaugurate cultural ... 1051. Obama plays peacemaker as Democrats attack - CNNPolitics.com 1052. Obama trashes America in speech in Malaysia 1053. Four teams to propose ideas for post-oil economy 1054. Google, Microsoft, EFF and more side with Apple in FBI iPhone ... 1055. New Car Sharing Economy Disrupts Automotive Industry: ABI ... 1056. China regulator queries Microsoft on findings in anti-trust probe 1057. The Missing Men 1058. Palestine ordered to play qualifiers on neutral territory 1059. Microsoft to Open Source Chakra JavaScript Engine 1060. Korean economy to expand 3% in 2016: finance minister 1061. Morneau insists Liberal plan will grow economy despite falling ... 1062. Dairy lift key to Northland's economic future: report 1063. Obama's Foreign Policy Explained: "Multilateralism Regulates Hubris" 1064. Premier smiling through the gloom 1065. Obama must negotiate free trade with the UK 1066. Saudi Arabia needs to invest $4 trillion in non-oil economy to meet ... 1067. Obama: 'We don't know why they did it' 1068. Obama unveils centrist Garland as Supreme Court pick 1069. President Obama heads to Palm Springs 1070. Microsoft is turning Internet Explorer into adware, sneaks ad ... 1071. World economy going through a 'tepid' recovery: IMF chief Christine ... 1072. Can Co-ops Disrupt the New App-Based Economy? 1073. Brazil's Economy Shrinks Less Than Forecast in Fourth Quarter 1074. Microsoft Patches Security Flaws For Windows, Office, Exchange Server And More 1075. Doug George-Kanentiio: A new Aboriginal economy, based on an ... 1076. Investing in a growing economy 1077. Obama Loosens Restrictions on US Forces Fighting Taliban in ... 1078. Obama in Germany: 35000 Protest TTIP Trade Deal in Hannover 1079. Despite strong economy, NYC mayor unveils cautious budget 1080. New Palestine mother pleads guilty after drugs found in 18-month-old child's system 1081. Police: Woman, 4 grandchildren killed by flooding in Palestine, Texas 1082. Microsoft strips Store blocking from Windows 10 Pro 1083. Two billionaires give economy a D+ grade 1084. Obama's Economy in 7 Charts: The Good, The Bad, and The Ugly 1085. Obama lauded for Cuba visit 1086. Microsoft just turned Windows 10 into malware 1087. Microsoft to kill off coder certificate exams for Windows app store 1088. Japan's economy bounces back, avoiding recession 1089. Wyo reports some gains despite down economy 1090. Microsoft internally testing Windows 10 Mobile build 10586.218 ... 1091. Obama administration loosens Cuba embargo with new measures 1092. Obama welcomes Trudeau for official visit 1093. Black Unemployment Rate Nearly Cut in Half Under Obama ... 1094. Economy grows despite woes 1095. Foreign Minister Reaffirms Japan's Economic Ties to Thailand 1096. A New Model Of The Economy Please 1097. New York man threatened to kill Obama, presidential hopefuls ... 1098. President Obama Nominates Four to Serve on the United States ... 1099. Microsoft: Bernstein Sees a FYQ2 Beat, Though the Biz is 'Complex' 1100. World Bank to help Serbia in transition to digital economy 1101. Microsoft Builds A Selfie App For iOS 1102. Mesosphere Raises $74 Million From Microsoft and HP Enterprise 1103. Capital Journal Friday PM: US Economy Showed Broad Strength in ... 1104. Accelerating the pace 1105. Malaysia must further strengthen domestic economy, says Najib 1106. New Ad Ties Clinton's Role In Obama Syria Policy To ISIS Attacks 1107. AAA: Stronger economy, lower gas prices means more travelers this ... 1108. Microsoft to roll out Windows 10 Mobile to Windows Phone 8.1 users ... 1109. Obama's post-Paris climate agenda: Fight lawsuits 1110. Supreme Court Puts EPA Carbon Rule on Hold During Litigation 1111. France's Fragile Economy Under Siege After Paris Attacks 1112. Microsoft’s latest Windows Insider build is basically the Windows 10 Anniversary update 1113. Firefighter video, 911 calls, give timeline of rescues during flooding in Palestine 1114. Obama leads tributes for Muhammad Ali, 'The Greatest' 1115. Why Microsoft's Surface Book deserves a second look 1116. Sputtering Jobs Market Risks Damping U.S. Economic Expansion 1117. Vibrant economy lifts sales tax collections 1118. Top takeaways from Obama's 2017 budget request 1119. Corporate tax proposal would strengthen Oregon's economy ... 1120. Philippines holds rates as election seen boosting economy 1121. This Treasury modelling sets out how company tax cuts can grow ... 1122. Obama Seeks Broadband for 20 Million More Low-Income Subscribers 1123. President Obama endorses Mayor Tom Barrett 1124. Loose Canons Obama's Libya Sh*t Show 1125. Palestinian Leaders Promise a New Year of Violence and Death 1126. Droves Of Weed Activists Roll Up To The White House To Protest ... 1127. Obama's next project should be fatherhood: Column 1128. Economic Daily News: Donald Trump and global economic crisis 1129. Government Seizes Sheriff's Armored Vehicle At Behest Of Obama ... 1130. Microsoft TechNet Virtual Conference Next Steps 1131. Report: Microsoft spending on its cloud data center spikes 1132. Malakoff-Teague playoff game in Palestine... 1133. Obama: Syria 'starting to fray more... 1134. Are Microsoft collaboration tools starting to join forces? 1135. Letter: Raise Palestinian flag again in Yonkers 1136. Obama's right. Europe's 'free riders' need to take the initiative on Syria 1137. How seven years of Obama created Trump 1138. Obama stresses State of Union themes in Nebraska 1139. Hillary Clinton set to talk economy in Columbus 1140. Epic Games co-founder really hates Microsoft’s PC gaming strategy 1141. Americans have least confidence in Donald Trump on economy: Poll 1142. Police identifies remaining suspects in burned puppy investigation 1143. Windows 10 now on 300M systems; Microsoft says free upgrade ... 1144. UWaterloo collaborates with a Palestinian university which serves ... 1145. Red Hat Enterprise Linux images now in Microsoft Azure Marketplace 1146. Microsoft has $108 billion in income offshore 1147. Microsoft Leaks Battlefield World War I Art Confirming Setting 1148. Sanders meets with 'evenhanded' Obama, predicts strong Iowa ... 1149. German economy had decent start to Q2, but growth to slow 1150. Opinion: Microsoft Has Ruined Conker 1151. “He's kind of perfect for the job”: Obama hints at a future in VC, and ... 1152. Landlords and traders receive 2000 tax allowance to boost 'sharing ... 1153. Obama to impose new gun control curbs next week 1154. Mitel will buy Polycom for US$2 billion in a tough enterprise communications market 1155. Obama tells SXSW we need to balance privacy and security 1156. Local access to the local economy 1157. China Stumbles in Race to Pass U.S. as World's Biggest Economy 1158. Microsoft touts benefits of DirectX 12 in new teaser video 1159. Two Microsoft researchers elected to National Academy of Sciences ... 1160. Cinteros AB (acquisition by Innofactor announced Dec 22, 2015 ... 1161. Microsoft's HoloLens gets its first augmented-reality rival: Asus 1162. Microsoft Apologizes For 'Red Dead Redemption' Screw Up 1163. Obama reveals Scalia's Supreme Court replacement 1164. Africa: #WorldOceansDay - Turning Sunken Costs Into Sunken Treasure 1165. 'Multiple buyers' reportedly wanted to purchase Lionhead - but ... 1166. India's forex reserves rise to $359.75 billion: RBI 1167. Les chos de Couserans-Palestine 1168. Justice Reform Advocates Urge Obama To SpeedAction On Clemency 1169. Microsoft Makes a Marijuana Play 1170. FDI rises 6.4 pct despite slowing economy 1171. Microsoft launches Azure preview in Germany and Canada ... 1172. Microsoft has a clever plan to secure Windows 10 devices 1173. Flatlining investment means north west economy on hold 1174. Former Judge Urges Obama To Commute Sentence He Imposed A ... 1175. Glimpses of economy over next 5 years 1176. Factbox - What Brexit could mean for the UK economy 1177. Premier pumping economy 1178. Obama hosts NBA champion Golden State Warriors to the White ... 1179. Microsoft launches Azure preview in Germany and Canada, announces DoD-specific regions in U.S. 1180. Message from the Fed: 'This is as good as it's going to get' 1181. Microsoft now internally testing Windows 10 cumulative update ... 1182. Fed's Janet Yellen Expresses Confidence in US Economy Ahead of ... 1183. Fight over Obama administration Medicare drug spending program ... 1184. Massachusetts Inmate Charged With Threatening to Kill Obama 1185. Obama: US, France must destroy IS together [watch live] 1186. Obama addresses bombshell Panama Papers leak in promoting tax reform 1187. Obama Meets Indian PM, Seeks Implementation of Climate Pact 1188. PETER MORICI: For U.S. economy, an outlook of meager growth 1189. Union Bank Small Business Economic Survey: Small Business ... 1190. Troy Wolverton: Microsoft retreats from aggressive Windows 10 push 1191. Officials From Obama's Cabinet Line Up To Endorse Clinton 1192. Obama administration launches all-out push on water 1193. Russian economy to endure difficult 2016, warns minister 1194. Rubio fires back against 'Republican Obama' characterization 1195. Pete King: Obama's Terror Speech 'Pitiful, Total Failure of Leadership' 1196. Obama to launch $4bn tech education initiative 1197. Microsoft Upgraded by Raymond James on Transition to Cloud 1198. Protesters tell Obama: closing Guantnamo is your responsibility 1199. Obama, Netanyahu may agree defence deal in Washington next month, envoy says 1200. Houston marks Al Quds Day with protest for Palestinian liberation 1201. Here comes the spring rebound for the US economy 1202. Japan's Abe to take G7 leaders to shrine as economy tops summit ... 1203. Microsoft's Bing now powers search and paid search ads on all AOL ... 1204. Trump's problem is how to raise it, but Clinton's is how to spend it 1205. Dell and Microsoft Present Research and Insights on Social Selling ... 1206. South African economy contracts, on track for recession 1207. Tuesday, 9 Feb 2016 1208. Microsoft publishes more details on the Windows 7 "almost SP2 ... 1209. East Palestine fugitive arrested in Beaver County 1210. Microsoft adds new WordPress Data Source, new themes, and more ... 1211. South Africa doesn't have enough developers to build a digital ... 1212. Nigeria asks for $3.5bn emergency loans 1213. Getting more disadvantaged pupils to university "boosts" Scotland's economy 1214. Special Report: Why Obama and other gun control advocates own ... 1215. Obama administration, religious non-profits open to contraception mandate compromise 1216. Palestinian national museum to open after 20 years of planning 1217. Microsoft sues government over secret demands for customer data 1218. Microsoft Surface Book available for pre-order in UK starting at £1,299 1219. Trudeau has just taken things up a notch 1220. Barack Obama calls Nick Saban 1221. Economy|Nafta May Have Saved Many Autoworkers' Jobs 1222. LOOK: Camera Just Caught The Moment Obama Embarrassed ... 1223. Obama sends Congress record $4.1 trillion 2017 spending plan 1224. Michelle Obama Speaks In Mississippi, Slams Its New Anti-LGBT Law 1225. Zionism, anti-blackness, and the struggle for Palestine 1226. Daily API RoundUp: Microsoft Computer Vision, Recombee ... 1227. Israeli forces raid Palestinians in Aida refugee camp 1228. Exclusive: Obama on Threats to Nature, Power of National Parks 1229. BOJ introduces negative interest rate to boost economy 1230. Microsoft's Scorpio gives Xbox VR, 4K and 6 TFLOPs 1231. Microsoft continues its pivot to being all about cloud services 1232. Obama calls for end to gender pay gap 1233. US jobless claims near 42-year low as labor market tightens 1234. Microsoft releases a free version of Skype for small businesses 1235. All the important Microsoft news stories for June 25, 2016 1236. Microsoft is NOT baking an ad-blocking feature into the Edge browser 1237. Obama Enlists Canadian Prime Minister to Help Fight Climate Change 1238. 'Knowledge-driven economy significant to propel development' 1239. Microsoft Drops Xbox One Price to $299 1240. Microsoft Lumia 550 gets another UK discount; now available from ... 1241. Obama at Rutgers Commencement Was 2 Years in the Making 1242. Developers Can Now Build Apps Directly Into Cyanogen OS 1243. Wildrose Public School Division expects 'significant' job cuts in ... 1244. Startup Made In Palestine crowdfunding to preserve tradition 1245. Obama endorses Clinton for president: 'I'm with her' 1246. Obama Hikes Post-Presidency Payments 1247. Kahlon: 'Economy is strong, ready to withstand any challenge' 1248. Obama's Budget and Education: Three Things to Watch 1249. Michelle Obama Reveals She and Queen Letizia Bonded Over Raising 'Strong, Smart and Outspoken' Girls 1250. Spring 2016 College Enrollment Down Nationwide As US Economy ... 1251. Rajan leaving not a good sign for Indian economy: ASSOCHAM 1252. Microsoft buys Talko to make Skype better for teams 1253. Microsoft is working on software for the legal marijuana industry 1254. Why Won't US Talk to Russia? 1255. Irish economy grows 7.8% in 2015: official data 1256. Microsoft pays out over Windows 10 update fiasco 1257. Microsoft's user-response Pulse platform now supports on-demand ... 1258. Market-oriented group wants to speed 'once-in-lifetime' clean economy transition 1259. Obama's approval ratings good news for Hillary Clinton 1260. How the Fed saved the economy and hurt seniors 1261. US manufacturing still weak; labor market flexes muscle 1262. Why China's Economic Health Is More Than Just The Markets 1263. Palestine Museum review – a beacon of optimism on a West Bank hilltop 1264. Palestine unifying element in Muslim world 1265. Two Palestine anglers open FLW Tour season on Thursday 1266. Michelle Obama arrives in Austin for SXSW 1267. Obama lifts arms ban on Vietnam 1268. UK economy stutters as third quarter GDP left at 0.5 per cent 1269. Obama presses Canada for quick TPP approval 1270. Behind Microsoft's magic mirror: Raspberry Pi, AI, Windows IoT plus ... 1271. Omantel, Microsoft to work towards digital smart home 1272. Microsoft To Retire Email Application 1273. Microsoft updates trust list after private key for Xbox Live leaks 1274. Fidel Castro lectures Obama after Cuba trip 1275. Obama's Plea to 'Fix Our Politics' Leaves Both Sides Looking Inward 1276. Forget Brexit austerity is far worse for the UK economy 1277. Obama says fighting climate change is good for business—except for the oil business 1278. Obama stunner: 31 Christians vs. 2000 Muslims 1279. Quora: Hillary Clinton on Extending Obama's Legacy 1280. Morrison labels mandatory steel use 'old-economy Labor politics' 1281. The Nakba at 68: A catastrophe born of discrimination and impunity 1282. Microsoft Withdraws Complaints to Regulators About Google 1283. Apple 'secretly building' virtual reality headset to rival Oculus Rift ... 1284. Obama addresses Colorado Springs Planned Parenthood shooting ... 1285. Team Obama's latest ISIS 'oops' 1286. Georgia hospitals worth $43.6 billion to economy 1287. 6 Ways the North American Clean Economy Agreement Will Affect ... 1288. Sushma inaugurates India-Palestine Digital learning Centre at Al-Quds University 1289. Yellen says US economy 'source of strength' for others 1290. Centre weighs in with ?90000 cr to pump-prime the economy 1291. No Recession Brewing for US Economy 1292. BC premier touts strong economy, says she's humbled by tough issues 1293. The digested referendum campaign: Immigration! Economy ... 1294. Why Obama couldn't stop the Brexit 1295. Microsoft's Bill Gates says Apple should help the FBI with iPhone: FT 1296. Microsoft Office Certification bundle is now 99% off 1297. Obama Commutes Sentences of 95 Prisoners and Pardons Two 1298. Obama Bars Atlantic Offshore Oil Drilling in Policy Reversal 1299. LinkedIn CEO Jeff Weiner's hiring package at Microsoft could be ... 1300. Black Democrats to Obama: Pick Lynch for... 1301. Japan economy remains in moderate recovery despite quake ... 1302. Obama signs bill extending privacy protections to allies 1303. Microsoft has formed a new posse to standardise IoT 1304. Obama's UK visit overshadowed by debate about leaving EU 1305. Obama Blasts Donald Trump's 'Half-Baked' Proposal to Pay for ... 1306. Nigeria: Minister alleges $9 billion stolen from economy 1307. The Keys to a Shared Economy Business: Control & Collaboration 1308. Obama to aggressively pursue 2016 regulations agenda 1309. Obama Faces a Diplomatic Dilemma on Malaysia Trip 1310. Deportation News: Senators Tell President Obama to Halt ... 1311. Refugee crisis: Migrants entering Europe will boost economy say ... 1312. How President Obama Made Syria An Unfixable Quagmire 1313. We’re re-calibrating the economy - Terkper tells investors 1314. Obama urges lawmakers to agree on Zika funding 1315. President Obama weighs in on 2016 Democratic race 1316. Senate sends highway, Export-Import Bank bill to Obama's desk 1317. Microsoft on board as Volvo NZ takes HoloLens to automative ... 1318. Top Iranian General Lauds New Intifada of Palestine's Younger ... 1319. JEF 2016: Saudi economic reforms drive 'impressive' 1320. Obama to deliver Oval Office address on Sunday 1321. Which Presidential Candidate's Tax Plan Can Juice the U.S. Economy? 1322. China posts slowest quarterly growth on record: govt 1323. Nissan, Mitsubishi confirm deal talks amid Mitsubish fuel-economy ... 1324. Steve Ballmer calls bullshit on Microsoft's cloud revenue 1325. The Building Sector's 'Trillion-Dollar' Circular Economy Opportunity 1326. Obama Administration to Schools: Trans Discrimination Will Not Be ... 1327. East Palestine breezes past Southern 1328. Microsoft Lumia 950, Lumia 950 XL India Launch Tipped for ... 1329. UN: 177 countries vote in support of the right of Palestinians to self ... 1330. Companies stand to make a lot of money selling data from smart ... 1331. Barack Obama makes historic Hiroshima visit 1332. Breaking the Israel-Palestine logjam 1333. Running Out of Patience, Obama Rebuffs Attacks on His ISIS Strategy 1334. Obama deeply dismayed by vulgarity, violence of campaign 1335. Defining Obama's Legacy: How Central Is the Economy? 1336. Choice of Taiwan premier shows economy a top priority 1337. Microsoft's Build 2016 event: start time, live blog, and how to watch 1338. Spanish election: It's the economy, stupid 1339. Our World: Obama's nuclear contrition 1340. Hillary Clinton to talk economy, auto industry in Detroit appearance 1341. Nobel Peace Prize laureates call for fight against terrorism ... 1342. Why Microsoft Azure is king of the hill 1343. Bush: Not 'Appropriate' For Palin To Blame Son's Arrest On Obama 1344. Microsoft Rolls Out Surface 3 and Pro 3 Hotfix for the 5 GHz Wireless ... 1345. Microsoft releases first major update for Windows 10 1346. Monday, 9 May 2016 1347. Canadian economy could shrink by more than 1% in second quarter ... 1348. Obama cheers economy as 'pretty darn great' 1349. Indian economy grows 7.3 per cent in Oct-Dec quarter of 2015-16 1350. Israel's villa in the jungle 1351. Microsoft partners with the American Council of the Blind for more ... 1352. EU referendum result: Has the French economy really overtaken the ... 1353. Obama announces new rule on equal pay 1354. Lew Warns of 'Negative' World Economic Impact If U.K. Exits EU 1355. MEMRI: Fatah Central Committee Member Tirawi: Palestinian State on 1356. Obama's shout out to Ben Simmons 1357. Microsoft buys cloud innovator InMage 1358. Obama to tell foe-to-friend story at Hillary Clinton event 1359. Why Microsoft bought maker of MileIQ Android-iOS app: For the data ... 1360. Forget balloons and drones: How Microsoft plans to get more people ... 1361. Weak global economy a threat to India: Arun Jaitley 1362. NSW best economy for six straight quarters 1363. Donald Trump Suggests President Obama Supports ISIS (Again) 1364. Snider wins 5A Football State Championship 1365. Palestine pushing for UN resolution on colonies 1366. Draghi and the ECB Are Pumping Up Europe's Economy Will It ... 1367. European markets rally after Japan's economy contracts 1368. WVU report says state economy may be stabilizing 1369. Aloha Obama: Inside the President's 2015 Hawaiian Holiday 1370. Trouble making your NCAA bracket picks? There's help online - CNET 1371. Google To Challenge Amazon, Microsoft In Cloud Computing War 1372. Can millennials save the US economy? 1373. Microsoft and Apple Under Investigation in China over Security ... 1374. Dems to Obama: 'Stop the deportations' 1375. Barack Obama Name-Checks Shonda Rhimes & Beyonce At Howard University Commencement Speech 1376. GOVERNMENT LEVIATHAN 1377. China economy: Slow output fuels global economic recovery fears 1378. Economy|Job Training Can Work. So Why Isn't There More of It? 1379. Obama: Trump's words and record should be taken seriously 1380. Microsoft Could Include a Speed Test Feature in Bing Search Engine 1381. Obama on Islamic State group: 'We will defeat them' 1382. Microsoft's Addictive Video Game 'Minecraft' Reaches China 1383. Google adds support for Microsoft Office, Facebook at Work, Slack ... 1384. Worker protection in the gig economy 1385. China: Unpaid migrant workers forced to sleep at work as economic crisis deepens 1386. Meet the Rutgers student who interviewed President Obama 1387. UPDATE 1-Canada eyes quick-hit infrastructure projects to revive ... 1388. GST rate to be moderate, bill likely in monsoon session: Arun Jaitley 1389. The Economy Is Coming Unglued 1390. Stanislaw Wellisz, Columbia Professor Who Helped Revive Poland's ... 1391. Microsoft did buy Groove, after all 1392. Kiev concerned over restrictions on transit of Ukrainian goods ... 1393. How Microsoft Corporation Spent $400 Million Promoting the iPad 1394. Americans Most Confident in Sanders, Kasich on Economy 1395. Palestine boys third, girls second at Dogwood Relays 1396. Russian Economy to Grow in 2016 – Upper House Speaker 1397. Faraj, post-Abbas king-maker 1398. From the Archive A Farewell to a Palestinian Friend, From the Writer ... 1399. Here's How Brexit Will Hit the US Economy 1400. Who Is in Charge at Obama's Justice Department? 1401. Even Osama Bin Laden Backed Obama's Fight Against Climate ... 1402. Donald Trump on President Obama's criticism: 'I'm obviously his ... 1403. Microsoft Boosts the Dow (For Once) 1404. Slowdown spreading to service side of economy 1405. The truth about the US economy 1406. Microsoft tries to head off Facebook at Work by turning on Yammer ... 1407. Paris 2015: Australia's quiet climate commitment to decarbonise the economy 1408. Suzuki Motor Shares Skid on Improper Fuel-Economy Tests 1409. 'Free' Windows 10 Reveals Its Expensive Secret 1410. Obama to meet Fed Chair Yellen on Monday 1411. Israel Bans Palestinian Traffic at Road 585 near Jenin 1412. UK 'average' on green economy 1413. Microsoft still believes hand tracking is the future of PC input 1414. Obama aide: US 'deserves' permanent immigration reform 1415. Obama: US Can Meet Goal of Accepting 10,000 Syrian Refugees 1416. Microsoft delivers preview of Office Delve app for Windows 10 1417. Mexico steps up dialogue with US firms over economy - minister 1418. Trudeau's Liberals must go beyond 'quick fix' to grow economy ... 1419. Obama Administration Works to Fix Health Insurance Co-Ops 1420. RPT-WRAPUP 1-China economy shows signs of steadying, more ... 1421. President Obama comments on Zaevion Dobson's death 1422. BC's hot summer, stronger US economy credited for tourism boost 1423. Obama's budget and hypocrisy on nukes 1424. Microsoft CEO working on book about transformation, change 1425. A wrong turn could lead to economic stagnation 1426. Hyundai Ioniq Hybrid Gets Better Fuel Economy Than A 2015 ... 1427. Ben Carson repeatedly mispronounces 'Hamas' while blasting ... 1428. Nigeria seeks to reflate economy with record budgetings 1429. President Obama Announces More Key Administration Posts 1430. Microsoft Shows New Mobile Tech That Could Make Apple's 3D ... 1431. Finance MPs juggling calls for more spending with shaky economy 1432. Iran: Economy to surge by 6% after sanctions are lifted, as IIF estimates bigger growth than China 1433. A cabinet where Turkey's economic balance is protected 1434. Obama grants reprieve to turkeys "Honest" and "Abe" 1435. Microsoft buying LinkedIn for $26B 1436. Economy Minister Plays Down Temporary Blip As Hungary's GDP ... 1437. Obama Warns Of 'Half-Baked' Proposals On Mexico 1438. Microsoft Corporation (MSFT) Aims For Future Growth Through AI ... 1439. Microsoft buys its third Israeli security company (MSFT) 1440. Amid political crisis, Brazil economy faces painful downturn 1441. Niles mayor on Meijer closing: 'The economy is not what it should be' 1442. Latest GDP figures show China's economy growing at slowest pace in quarter of a century 1443. Microsoft Groove app gets Insider-like flighting and new jump list ... 1444. Tags: obama | order | public | school | restrooms | transgender 1445. How Byron Allen Gate-Crashed Sundance and Sued Obama's FCC ... 1446. Microsoft brings Continuum to the mid-range with support for ... 1447. Bank of Canada may start revealing its view of federal budget's ... 1448. US Jobs Data and the Prospect of a Growing Economy 1449. Beckett report: Labour lost election over economy, immigration and ... 1450. Obama's environmental crescendo in regs to watch 1451. Obama and Clinton rally against Trump 1452. President Barack Obama Appears at the MTV Movie Awards to ... 1453. Microsoft ticks off Steve Ballmer and a phone you can clean with soap 1454. China's economy still facing pressure but improvements are ... 1455. The greatness of Fedora Guy and other Microsoft Build highlights 1456. Economy, Drought Spur Sunol Valley Golf Club Closure 1457. Four Malaysian teachers qualify for Microsoft Global Educator ... 1458. Spain's Guindos Defends the People’s Party Record 1459. Obama Endorses Hillary Clinton for President 1460. Economy in U.S. Expanded Modestly Since Mid-August, Fed Says 1461. Obama Says No Sign of Credible Terror Plot Against U.S. 1462. Wall St. ends higher; Apple, Microsoft boost 1463. Donald Trump's Former Butler: 'I Did Write on Facebook That Obama ... 1464. President Obama Takes Subtle Jabs at Donald Trump During ... 1465. Sushma Swaraj leaves for Palestine, Israel to review bilateral relations 1466. Microsoft tests underwater data centre that could drastically cut high energy costs 1467. More 'legacy lies' from outgoing Obama on economy 1468. The American economy's big problem: we don't have enough ... 1469. Facebook director appointed to digital economy advisory group 1470. Brexit To Hit Fragile Global Economy, Putting Fed In A Bind 1471. Brexit threatens US economy (and Clinton) 1472. Obama: National Debt Problem 'Is Very Simple': 'We Use A Lot of ... 1473. Mitsubishi has been cheating fuel economy tests for 25 years 1474. Khamenei says Iranian economy yet to gain from foreign business visits 1475. Microsoft Releases iOS Version of Cortana; Can the App Integrate ... 1476. Obama Administration Expands TechHire Jobs Initiative 1477. Chinese economic turmoil rattles the Northwest 1478. South Korea stocks fall as economy slows 1479. Microsoft on tablets: Can endure Manziel's head 1480. Better qualified workforce 'could boost Scottish economy by £2 billion' 1481. Michelle Obama told graduates of the poor man's Harvard that ... 1482. First aid station opens in Gaza town with Turkish help 1483. President Obama Pays Tribute at Arlington National Cemetery 1484. Chinese economy shows signs of recovery says PBOC ecnomist 1485. Economic outlook for 2016 1486. Microsoft integrates Skype into Slack 1487. Obama urges Turkey, Russia to set tension aside, focus on IS 1488. Economy will take years to adjust to commodity-price decline: Bank of Canada 1489. Obama deeply dismayed by vulgarity, violence of campaign 1490. The US Economy Might Be Manufacturing More GDP Growth 1491. Obama ignoring evidence of Baltimore mosque's ties to terror 1492. Brexit will be terrible for Africa's largest economies 1493. Mike Ditka: Obama is 'the worst president we've ever had' 1494. Obama takes case for Supreme Court pick to home turf of GOP senators up for re-election 1495. Microsoft is leading the wearable market...in patent applications 1496. Brain drain damaging Northern Ireland's economy, warns QUB chief 1497. Kant: India Is the Most Open Economy in the World 1498. Microsoft Earnings: Cloud Fillips Revenue Even As OS Sales Decline 1499. Golden Hammer: Obama's liberal agenda gets federally-funded ride ... 1500. US diplomats look to a different Syria policy post-Obama 1501. Microsoft joins the open-source Eclipse Foundation 1502. Obama's Drug Czar To Visit Tulsa To Unveil Overdose Treatment Plan 1503. From Israel, With Kidney !! 1504. Arizona sheriff says Obama called global warming America's 'top ... 1505. Special report: Obama has ordered flags at half-staff more than any ... 1506. Microsoft Providing Cloud Computing Services to BMW 1507. Russian Economy Ministry draft sees economy shrinking in 2016 - sources 1508. Obama says nuclear terrorist attack would 'change our world' 1509. Microsoft extends Windows 7 and 8 support on Skylake systems ... 1510. What Happened To Zimbabwe's Economy? 1511. Obama's Former Defense Sec: Obama 'Has Centralized Power' In ... 1512. Obama Says US Economy Is the Strongest in the World By Far 1513. Here's how 'Tere Bin Laden' director Abhishek Sharma found ... 1514. Palestinian reporter to censor himself after being held by Hamas 1515. EDITORIAL: National report on counties shows economy hasn't ... 1516. Logjam in Parliament impacting economy, governance: Survey 1517. Palestinian groups find non-violence calls are drowned out by militants 1518. Abe pledges to boost economy as upper house poll campaign begins 1519. The Latest: Yen's rise a concern for Japanese economy 1520. Trump Just Killed The Republican Party By Agreeing With Obama ... 1521. Fight Against Multiple Sclerosis Gains a Tech Ally 1522. Obama names favorite song, book and movie of 2015 1523. Obama mocks Trump brand wine 1524. Exclusive: Paul English's new startup hires former Microsoft Bing exec 1525. Dermod Travis: B.C.'s economy, up, down, and sideways 1526. Giving Obama His Due 1527. ClearDB MySQL Database Services Now Available to Microsoft Azure Customers in Canada 1528. Obama becomes 1st US president to visit Hiroshima bomb site 1529. Obama: A new day for Cuba-US relations 1530. SNP Friends of Palestine convener arrested then deported on arrival ... 1531. Microsoft Sacrifices Lumia 950 And 950 XL For A Stronger Surface ... 1532. Obama Mocks Trump While Slow-Jamming the News with Fallon ... 1533. Obama's Final State Of The union 1534. Obama, Carson and hope for my African-American sons 1535. First Nations Economy Worth $1.1 Billion In Atlantic Canada: Study 1536. Creative industries are 'driving force' of UK economy, says David ... 1537. Jaitley Hails Booming, Tax-Free, Job-Rich Informal India Economy 1538. Against the loud mouths 1539. Letter: Clinton will continue Obama's failed policies 1540. President Obama's "Trump Card" in the Upcoming Supreme Court ... 1541. Palestine residents' interest in historic home preservation spurs new ... 1542. Obama: The Supreme Court Impasse Might Undermine Democracy 1543. IMF downgrades outlook for US economy 1544. Microsoft shares its vision for Enterprise Integration Services 1545. Microsoft CEO visiting China as anti-trust probe nears third year 1546. Microsoft kills another Xbox One feature 1547. Palestine: EUR 2 million for Social Infrastructure Projects in the West ... 1548. INLAND ECONOMY: Growth noted; purchasing managers skeptical 1549. There is math, there is fantasy math, and then there's Donald ... 1550. Microsoft Working To Make Xbox 360 Games Purchasable On Xbox ... 1551. BoE's Haldane says world economy could slow but unlikely to contract 1552. Obama: ISIS terrorism is 'a scourge that threatens all of us' 1553. Brazil in crisis: The good, the bad and the ugly 1554. Global officials fret as storm clouds gather over world economy 1555. Operation Phakisa unlocks R17bn in economy 1556. Obama Praises Refugees in Malaysia: 'Excited' to See What You Do ... 1557. Microsoft's AI teen turns into Hitler-loving Trump fan, thanks to the internet 1558. Inside the State of the German Economy 1559. Microsoft invites business leaders to their new Microsoft Envision ... 1560. Obama's surprising self-assessment 1561. When It Comes to Foreign Policy, Obama Makes Trump Look Like ... 1562. Saturday, 30 Apr 2016 1563. Microsoft virtual keyboard goes cross-platform with iOS and Android versions 1564. Charles Krauthammer Slams Obama as 'Clueless' in the Wake of the ... 1565. Obama will use TPP to Enforce his Climate Agreement 1566. Donald Trump taunts President Obama's plan to build 'strong walls ... 1567. Neocons Head to Congress to Baselessly Smear Palestine ... 1568. More popular than Reagan: The press refuses to give Obama his due 1569. NDP to help small tech companies to help diversify economy 1570. Obama hosts South East Asian leaders at desert retreat 1571. Why Microsoft, Uber And 500 Startups Came To Downtown Cairo 1572. US economy: Who took what jobs? 1573. Another Palestinian media outlet shut down; this time in France 1574. King Salman: Saudi stance on Palestine remains firm 1575. President Obama compares anti-Muslim rhetoric to historic ... 1576. Microsoft Windows zero-day exposes companies to credit card data ... 1577. 5 things to expect from Microsoft's big developer conference 1578. Honestly, This NRA Ad About 'Flower Child' Obama Versus Brave ... 1579. Microsoft Sway updated with Picture Zoom and Jump List support 1580. Bernie Sanders says 'hatred' toward Barack Obama 'maybe' based ... 1581. Amazon's Jeff Bezos and Microsoft co-founder Paul Allen are ... 1582. Barack Obama to hold Austin fundraiser on first day of SXSW 1583. China's Sluggish Economy Lowers Commodity Prices in Australia ... 1584. Last day of Microsoft's 12 Days of Deals discounts the ASUS ... 1585. Lodha report could change cricket's TV economy 1586. Obama grants monument status to vast swath of Calif. desert 1587. Wiles: God Will Collapse US Economy As Judgment For Planned ... 1588. Obama urges 'blood brother' Britain not to leave the EU 1589. House Democrats trying to slow down Obama administration effort to ... 1590. Microsoft Declares $1B Cloud Donation, With Implicit Silver Linings ... 1591. J Street tries to defend selling Iran deal for Obama 1592. Israeli troops shoot dead alleged Palestinian attackers 1593. Toomey up, Obama up, Wolf not so much 1594. Cortana for iOS and Android Is Not Worth the Download 1595. TABO launches new Mobile App 1596. Obama gave a huge signal that the old War on Drugs is over 1597. Siemens to Showcase Its US Presence During Obama Visit 1598. Microsoft FlashBack makes VR more accessible for low-end ... 1599. Hiring slowdown in April may signal caution about US economy 1600. California Passes France As World's 6th-Largest Economy 1601. 'I'd check the podium for onions': Fox pundit questions Obama's 'raw ... 1602. Legitimizing Palestine in World Literature 1603. Are You Ready for Gig-Economy Clients? 1604. Microsoft makes Azure Media Sharing announcements at NAB show 1605. A Goldilocks economy for 2016: Strategist 1606. Transcript of Obama's 2016 State of the Union Address 1607. What do Israelis really know about Palestinian suffering? 1608. $341K in Honolulu Police Overtime for Obama Family Vacation 1609. Obama Unsure if Russia Will Join Grand Coalition Against Islamic ... 1610. Obama: discussed with Modi how to speed enactment of climate pact 1611. NBS: Economy Added 475180 Jobs in Third Quarter 1612. Canada's economic image problem 1613. Adrian Peterson donating $100K to flood relief in hometown 1614. Obama to host Asian-Pacific leaders in Southern California 1615. Africa: Human Economy Key to Africa's Development, Says Oxfam ... 1616. Skepticism about climate change may be linked to concerns about economy 1617. Steph Curry, Obama team up for mentoring PSA 1618. Uber complaint raises serious questions about disability rights in the ... 1619. What Obama didn't say: SOTU glosses over trouble spots 1620. Obama Administration Sues North Carolina Over Anti-LGBT ... 1621. Microsoft takes a swipe at Google Chrome by suggesting it kills battery life 1622. California bill seeks to bring collective bargaining to gig economy ... 1623. Obama's gun control plan ignores the excesses of US arms industry 1624. Russian economy ministry denies reports on sending draft decree ... 1625. Microsoft hosting WWDC 'afterparty' for iOS, OS X developers 1626. Lockhart Says Economy Supports Fed Rate Hike As Soon As April 1627. Hillary Clinton to Congress: Approve Obama's $1.9B Zika request now 1628. PM Modi's seventh meeting with Barack Obama today: What we ... 1629. Windows 10-Powered Microsoft Lumia 550 Now Just $99 With T ... 1630. Nigeria economy: Tinubu gives Buhari daunting task 1631. Obama Says Republican Calls for Syrian Refugee Religious Test Shameful 1632. Zim: The political economy of diamonds 1633. Dick Morris: Why Obama spared ISIS oil 1634. What Windows 10? Microsoft Has a Mosquito Trap, and It's Awesome 1635. Barack Obama hits the hiking trail on First Family's Hawaiian vacation 1636. Obama Preparing to Endorse in 2016 Race, Take on Trump 1637. White House: Obama Thinks Gun Control Will Deter Terrorists 1638. Talks to tackle Palestine and Rohingyas 1639. China's economy: 7 key people who make the big decisions 1640. Brazil's fall 1641. Top Microsoft position for KZN man (22) 1642. Barack Obama bans e-cigarettes for children but not child labour on ... 1643. [Video] Meet The Youngest Journalist Reporting From Palestine 1644. This time, put your foot down, Mr. Obama 1645. Week Ahead Corporate Diary: April 18 - April 22 Microsoft and ... 1646. Obama can't wait to wear mom jeans after he leaves the White House 1647. Sanders' student followers saw economy collapse on their parents ... 1648. The Supreme Court asks its four questions on Obama's immigration ... 1649. Microsoft is growing its cloud revenue faster than Amazon (MSFT, AMZN) 1650. Obama to urge graduates to pursue progress in changing world 1651. Young Socialist Hardliner to Lead Venezuela's Economy 1652. As Russia's economy shrinks, Vladimir Putin softens his tone 1653. LGBT rights are human rights: Obama on International Day Against Homophobia and Transphobia 1654. Global economy struggling for growth despite limited good signs in ... 1655. Obama's Regulations to Close Gender Wage Gap Will Hurt Your ... 1656. Turkey to focus on structural reforms for sustainable economic ... 1657. Two games based on Microsoft's Flight Simulator tech are coming in ... 1658. Thanks for what in the local economy? 1659. Microsoft Surface Book Long-Term Review 1660. Belgium hotline operator says of Israel: It's called Palestine, sir 1661. RIP IE: Older versions of Microsoft's browser lose support next week 1662. Microsoft Removes Windows 10 November upgrade From ... 1663. Tech & Telecoms: Opportunities in Apple and Microsoft 1664. Research Analysts' Recent Ratings Changes for Microsoft (MSFT) 1665. BATHROOM WARS 1666. Obama cements drone-centric counterterrorism legacy with Central ... 1667. Microsoft??Windows Holographic ?????????(MR)??? 1668. Obama: US a Leader in Climate Change Progress 1669. NSA, Microsoft team up to tackle cybercrime in Nigeria 1670. [W/VIDEO] Obama's Weekly Address: Playing by the same rules 1671. Obama briefed on Orlando shooting 1672. 'American Sniper' widow confronts Barack Obama over gun control 1673. Man formally charged with 6 counts of capital murder in in East Texas campsite killings 1674. American Samoa petitions Obama over canneries 1675. Ship 'em out: Exports can cure what ails local economy, study urges 1676. Obama Orders More Earthquake Resilience for Gov't Buildings 1677. Obama Taps Tom Bernstein for Second Term Chairing Holocaust ... 1678. NFL communications executive will rent his mansion to Obama 1679. Europe Bank Rout Erases $434 Billion, Twice Greek Economy: Chart 1680. Obama wraps up historic Asia trip 1681. Obama does victory lap around GOP on jobs numbers 1682. Wisconsin mayor to shorten vacation to deal with furor over Obama ... 1683. Obama: Many Americans Feel Helpless About Gun Violence (Video) 1684. Microsoft Outlook users with Office 365 get a security perk: Unsafe email warnings 1685. Ex-Shin Bet chief: Israel should help Gazan economy in addition to ... 1686. Wednesday, 18 May 2016 1687. Obama to meet with GOP leaders on court fight 1688. Palestine: Not a state, but already a failure 1689. German economy minister says would welcome European bid for Kuka 1690. Spring events will boost economy 1691. Obama to visit Germany, Merkel in April 1692. No college degree? No job, as economy leaves behind unskilled ... 1693. Yoder: Cancer funding crucial for KC economy 1694. Obama grants reprieve to turkeys "Honest" and "Abe" 1695. Obama Going to Cuba; First Visit by US President in 88 Years 1696. LIVE: Broncos meet Pres. Obama 1697. Microsoft is taking its cues from Facebook as it totally shakes up Office 1698. Finance Ministry Adopts Green Economy 1699. Closely watching market moves - Japan economy minister Ishihara 1700. Cheektowaga man threatens to kill Pres. Obama, Trump, Cruz and ... 1701. Why Microsoft Says Windows 10 Upgrades Cannot Be Stopped 1702. Reality versus Obama's climate of fear 1703. Argentina's New President Moves Swiftly to Shake Up the Economy 1704. Obama to speak at National Prayer Breakfast 1705. "Horrified": Seymour Hersh Reacts to Obama's Plan to Send 250 ... 1706. German Unemployment Extends Drop in Sign Economy Still Robust 1707. Why I hope Malia Obama's pre-college 'gap year' doesn't inspire a ... 1708. Korean EMBA Module 1 Completed: China's Macro Economy and ... 1709. BC could lead Canadian economic growth in low-loonie era ... 1710. Windows 10 November update apparently deleting some third-party programs 1711. What swimsuit models, men's undies and Big Macs say about the ... 1712. Paris terror leaves weak economy in Its wake 1713. Microsoft will not support Skylake in Windows 7 and 8 1714. Microsoft and Red Hat partnership: Flexibility for enterprise hybrid cloud solutions 1715. To make economy more efficient, interest rates have to come down ... 1716. South African Nobelist Coetzee on Israel and apartheid: 'Draw your ... 1717. Slowing Turkmenistan economy threatens dictatorship 1718. BREAKING: Republicans Just Pulled The Plug On Dems' Big Plan ... 1719. Microsoft, It's Time for Xbox One S and an Entertainment Set-Top Box 1720. Economy, Regs, & Taxes Economic Reality vs. Obama's Economic ... 1721. Palestine man arrested after Monday night altercation led to shooting 1722. Obama administration asks top court to revive immigration plan 1723. Christie boasts of saving N.J. economy 1724. Androgynous Model Rain Dove on Gender Roles, Meeting ... 1725. Dubai economy grew by at least 3.5 per cent in 2015: Dubai Chamber 1726. These 5 Facts Explain the Dire Economic Costs of the Paris Attacks 1727. Microsoft's 'last Lumia' could be launching soon 1728. Microsoft begins Windows 10 Mobile roll-out 1729. Facebook, Microsoft, and Google say UK spying laws are 'a step in ... 1730. The Morning Download: Microsoft, SAP Partnership Reflects Age of ... 1731. Fed's Williams urges US central bank to stay on track with rate rises 1732. Why robots won't destroy the economy 1733. Tobacco ban to negatively affect the economy 1734. Benjamin Netanyahu shakes hands with Mahmoud Abbas in Paris 1735. What's the Fix for the Racism in Sharing Economy? 1736. Marc Faber: The Fed is obsessed with the stock market 1737. Mervyn King on Brexit, BOE's Carney, UK Economy 1738. Obama administration fails to screen Syrian refugees' social media accounts 1739. Brainwashed Palestinians 1740. Centerra Gold blames weak Kyrgyz economy for pressure on gold miner 1741. Tech Toys Review: 5 Reasons the Microsoft Surface Pro 4 could ... 1742. Microsoft's Android alarm app wants you to rise, shine and selfie - CNET 1743. Is West Bengal's economy actually reviving under Mamata Banerjee? 1744. Microsoft disables Hey Cortana feature from Android app 1745. One Big Piece Of Obama's Legacy: A Park System That Looks Like ... 1746. Microsoft Monday: Windows 10 Spying Becomes Worse, Gates ... 1747. Microsoft integrates Xamarin into Visual Studio for free, will open ... 1748. Korean economy enters slowing mode: KDI 1749. Obama family serves Thanksgiving dinner to homeless and vets 1750. Vatican Recognizes Palestine As A State 1751. Scottish couple tell of their insights into Middle East troubles as they ride through Palestine to raise money for ... 1752. Microsoft's Project Islandwood gets updated with iOS app ... 1753. Jeff Sessions: US 'Economy Cannot Sustain' Current Lawful ... 1754. Microsoft criticises India's cloud policy 1755. Here's Why President Obama Won't Force Through a Ton of ... 1756. Iran poses an economic challenge to Saudi Arabia 1757. JP Morgan And Citigroup Agree That The US Economy Is ... 1758. Palestine: New year, new Israeli violence 1759. Obama To Put A Human Face On Dangers Of Climate Change 1760. John McCain: President Obama is 'directly responsible' for Orlando 1761. Obama's first farewell tour starts with damage control 1762. There's no alternative: help Israel and Palestine seek peace ... 1763. Plumbago: How Microsoft is building new app for notes, stylus ... 1764. Behind the scenes of escort economy 2.0 1765. Deputy PM calls for Chinese investors to join Russia's regional ... 1766. How to Turn on the Black Theme in Microsoft Office 1767. Obama Political Appointee 'Burrows' Into Permanent Job at VA 1768. Microsoft Corporation Climbs After Upgrade For Cloud Potential 1769. Where are Palestine's good neighbours? 1770. Forex Snapshot: Japan's Economy 1771. Bernie Supporters Are Mostly Disappointed in Obama 1772. Microsoft is pulling the plug on Internet Explorer 8, 9, and 10 next Tuesday 1773. Obama signs law to spend billions on N.J. roads 1774. The Obama Justice Department's Insane Attack on North Carolina 1775. Stocks Slump as Fed Fuels Fears About Global Economy 1776. Obama moves to fill three local U.S. District Court vacancies 1777. Obama allies to Sanders: Hey, we're true progressives too, you ... 1778. Non-binary student in England tells Obama she literally has no rights 1779. ISME seek Govt action on black market economy 1780. Microsoft woos non-Windows developers with new tools 1781. Microsoft, Xiaomi expand partnership to bring productivity services to millions 1782. CROWBAR's KIRK WINDSTEIN Accuses PRESIDENT OBAMA Of ... 1783. Indian economy continues to progress on expected path: Chanda ... 1784. Baby Lull Portends Growing Pain for Economy 1785. Obama: 'We must make it harder to buy powerful guns as used in ... 1786. Tensions With Russia Add to a Chill in Turkey's Economy 1787. Kenya economy under fire from World Bank 1788. Top Rubio Donors Include Goldman Sachs, Microsoft, Tech ... 1789. German economy minister cancels Iran trip due to illness, official says 1790. Obama to meet McConnell, Grassley to discuss Supreme Court vacancy 1791. Newmont acquisition will benefit Indonesian economy: 1792. Obama signs Hezbollah sanctions bill into law 1793. From the archives: Obama holds rally at CSU in 2012 1794. Obama out: President closes out his run as comedian-in-chief 1795. Obama names favorite song, book and movie of 2015 1796. Illinois Dems Move to Make Obama's Birthday a State Holiday 1797. The Microsoft phone that reacts BEFORE you touch it 1798. Palestine Solidarity Day 2015 in Jakarta Runs Lively 1799. Time to recognise state of Palestine 1800. Infosys to collaborate with Microsoft on analytics solutions 1801. Microsoft Offers Mea Culpa in OneDrive Unlimited Storage Flap 1802. Van Susteren: Obama needlessly dividing the country by putting ... 1803. Microsoft pulls the plug on Project Spark 1804. China will hold global economy back in 2016 1805. Phil Jimenez Swipe Files Obama (And Himself) For X-O Manowar #50 1806. Fatah and the Palestinian Authority's Jihadist Tendencies 1807. Rubio's clumsy case against Obama and 'change' 1808. Malcolm Turnbull and Barack Obama hold key White House talks ... 1809. Obama enlists Pentagon to overhaul security clearance system 1810. Stocks tumble amid concerns over global economy 1811. ECONOMICS >May presenting trouble for Turkish economy 1812. Obama cements his legacy with his trip to Hiroshima 1813. Obama's First Stop in Paris Is Saddest of Destinations 1814. Microsoft set to ban most common passwords in bid to improve security 1815. Why Buhari lacks solution to Nigeria's dwindling economy Fayose 1816. Cameron could not have asked for more from Obama's Brexit warning 1817. Obama Administration to Expand Refugee Plan 1818. Microsoft and Amazon announce UK data centre plans 1819. Microsoft reorg stirs company’s alphabet soup of units 1820. Is negativity from Trump, Sanders hurting the economy? 1821. Microsoft apologizes after AI teen Tay misbehaves - CNET 1822. Obama honors Connecticut woman as Teacher of the Year 1823. President Obama Acknowledges 'Brexit' To Silicon Valley Crowd 1824. Microsoft Co. (MSFT) Given Sell Rating at Citigroup Inc. 1825. Netanyahu Seeking to Close US Aid Deal Before Obama Leaves ... 1826. Absolute Embeds Persistence Technology in Microsoft Surface 3 Devices 1827. Ben Stein Asks If Obama Hates America Because He's Black 1828. The Latest: Cruz attacks Trump's reference to 'Palestine' 1829. Presdient Obama rebuts anti-Muslim rhetoric in first U.S. mosque visit 1830. World leaders call for action at Paris climate talks live 1831. Draghi: ECB Monetary Policy Is Stimulating the Economy 1832. Obama: Democratic nominee clear next week 1833. Essex University contributes £464million to the economy in the East every year 1834. Obama's Big New Move on Coal 1835. Microsoft Has a Mixed Deal Record -- WSJ 1836. Obama condemns violence at Trump rally 1837. DiCaprio as Putin or a Russian film about Obama? 1838. Obama: US ramps up intelligence cooperation, to review ISIS fight at ... 1839. Microsoft wants Xbox to play nicely with PlayStation 1840. How Apple, Microsoft are benefiting from tightening IT budgets 1841. Microsoft is learning to ship PC games again, says Spencer 1842. Tax Reform and the Economy: Who is Best? 1843. TD Says Canadian Economy has Peaked 1844. House Speaker Demands Investigation Into Obama's Iran Deception 1845. Brexit to have short-term ramifications on Indian economy: Analysts 1846. Most economists say Brexit will harm economy 1847. Obama hosts mentor program for White House Luncheon 1848. Gloves off: Opera Software disputes Microsoft's Edge-browser claim 1849. 'Moderate' Palestinian Movement Honors Japanese Terrorist 1850. US firms take notice of Aquino's economic reforms 1851. For America, 'Brexit' May Be a Warning of Globalization's Limits 1852. How the GOP hawks let Obama get away with murder 1853. 'Green vote' and the economy 1854. Obama debates controversial Arizona sheriff on guns 1855. Global economy to top agenda at G7 1856. Cracks in America's economy are growing 1857. A sanguine view on the Irish economy 1858. Obama's Climate Win Won't Stop His Downward Slide 1859. Obama, Erdogan speak by phone, vow cooperation against ... 1860. Microsoft Lumia 950 To Arrive First At AT&T On Nov. 20 1861. Obama to ask Americans to 'fix our politics' in SOTU 1862. Obama and the rise of the selfie presidency 1863. Mazda’s all-new CX-9 earns best-in-class fuel economy of 25 combined mpg 1864. How durable are Obama's gun reforms? 1865. Palestine in the Second World War: Strategic Plans and Political ... 1866. Has Obamacare worked? Experts say yes 1867. President Obama on impact of climate change 1868. AA to sell 'premium-economy' seats on international flights 1869. Guinea president names mining executive as new prime minister to ... 1870. Obama Criticized for Festive Behavior Amid Brussels Attacks 1871. Obama names new ISIS adviser, counter-terror measures 1872. Israel-Palestine: Social Media As a Tool Of Oppression 1873. Microsoft adds 35,000 traffic cameras to Bing Maps 1874. Obama was right: Conspiracy theorists are more likely to oppose ... 1875. Microsoft releases PLC Groups Preview to foster collaboration ... 1876. Obama on Hillary's Email Intent 1877. Learn something from the Chinese economy 1878. BRIEF-Microsoft board of directors amended company's bylaws ... 1879. Barack Obama on Oscars diversity: are we giving everyone a fair shot? 1880. Obama's confidence higher over Supreme Court pick 1881. China's April Economic Indicators Point To Sustained Weakness 1882. Obama's remaining days 1883. Climate Change: Children Take On Obama, US Government For ... 1884. Palestine: Thousands protest on 40th Land Day 1885. Overnight Finance: Obama looks to boost retirement savings 1886. Obama, Libya and all the presidents' regrets 1887. Fuel Economy vs. Acceleration - Consumer Reports 1888. US retaining UNESCO board seat despite Palestine membership flap 1889. Microsoft quarterly profit slips but tops forecasts 1890. Samsung Galaxy S7 Edge vs. Microsoft Lumia 950 XL: Specs and ... 1891. Family advocate: Impeach Obama over bathrooms 1892. Rush Limbaugh defends Rubio's debate answer: He's absolutely ... 1893. Six Americans recovered from Mali hotel under attack, Obama briefed 1894. Jan PMI Manufacturing Surveys highlight global economy is losing ... 1895. Epic Games Founder Rails Against Microsoft's Walled Garden 1896. The Quartet has failed Palestine 1897. Believe in Ghana's economy - Veep 1898. Look on AIPAC's Works, American Jews 1899. Obama creates council to help ensure smooth transition 1900. Microsoft's latest adverts show how you can do more with Windows 10 1901. Obama to U.S. Muslims: ‘You Fit in Here’ 1902. Economy in the North to remain 'sluggish' says report 1903. Obama at SXSW: 'The reason I'm here really is to recruit all of you' 1904. Video- Israeli MK claims: There is no Palestine and therefore no ... 1905. Redefining the 'sharing' economy, Brexit aftershocks and voices ... 1906. After SwiftKey, here's who Microsoft should acquire next 1907. The US bet big on American oil and now the whole global economy ... 1908. President Obama's Approval Rating Hits 3-Year High 1909. Eurozone Economy Revived in March 1910. Brazilian economy's steep slide raises spectre of depression 1911. Microsoft Releases SharePoint Server 2016 Release Candidate 1912. Congress Tells Obama to Start Planning His Departure 1913. Are We Seeing Danger Signs in the US Economy? 1914. Microsoft phone support contractors told to hang up after 15 minutes 1915. Xbox One Backward Compatibility: Microsoft adds 3 new games ... 1916. Obama: Put Nordic Countries 'In Charge for a While' Because 'They ... 1917. Survey suggests eurozone economy set for robust year 1918. Microsoft again delays Surface Hub launch 1919. New IMF chief economist sees major challenges to global economy 1920. Obama meets with King Salman at start of Saudi Arabia visit 1921. Two Palestinian teenagers killed by IOF, Friday dawn 1922. Union Budget 2016-17: Will it revive the rural economy? 1923. Want a peek at experimental new apps? Check out Microsoft Garage. 1924. Microsoft has opened up HoloLens, says partner products are coming soon 1925. Confidence in Sask economy dips 1926. Microsoft cuts again, writes down $US950m 1927. Is the leaked HP Falcon Windows phone evidence of HP’s return to making phones? 1928. Obama expected to change gun show sales policy 1929. Economy weaker than Buffett expected 1930. Up to 250 US military personnel headed to Syria, Obama ... 1931. Dairy industry keep moo-ving Michigan's economy forward 1932. Will Trump's economic policies really plunge the U.S. into a ... 1933. Investors hoping for surprises from Microsoft Corp, Amazon.com Inc ... 1934. Business group and opposition seek emergency debate on ... 1935. Windows 10 meets NT: Why Microsoft is revisiting the past with its ... 1936. Obama gets reminders after urging citizens to stand up against NRA 1937. Obama on Trump nomination: 'This is not a reality show' 1938. Obama Tells the Truth About Race, and the Right Explodes 1939. Ex-Dividend Reminder: Zions Bancorporation, Maxim Integrated ... 1940. Windsor Financial Group LLC Decreases Position in Microsoft Co ... 1941. Is Canada's Economy Increasingly Vulnerable Under Trudeau? 1942. Lack of SME finance awareness 'could cost economy 20bn by 2020' 1943. San Bernardino shooting: Barack Obama says US 'will not be ... 1944. American Airlines seat American Airlines 1945. Microsoft Partners with University Program for South Side Nonprofits 1946. Strong China property data masks big problem: unsold homes 1947. Obama Doesn't Expect Quick Russian Shift on Syria 1948. Microsoft Outlook for iOS can now secure your email, contacts ... 1949. Microsoft gets Apple's back in fight with FBI 1950. George Osborne To Resurface On Monday Morning With Brexit ... 1951. Trump Vows to Undo Obama's Climate Agenda 1952. Microsoft Dynamics Profile: CRM MVP Learns, Teaches, Codes ... 1953. Innovation needs to drive Niagara's economy 1954. UK: BoE to act to support lending to the economy - MUFG 1955. Why Israel's Economy Is Still Resilient 1956. Microsoft's new Lumia 650 emphasizes its new business focus, but without Continuum 1957. how to fix climate change and the global economy 1958. Most Japanese Say No Hiroshima Apology From Obama Is ... 1959. GOP calls on Obama to prioritize VA 1960. Obama: Iran Will Not Obtain Nuclear Weapon 1961. Indian economy in consolidation phase: CLSA 16 Nov 2015, 10 ... 1962. Obama urges swift action on Zika virus 1963. Glenn Beck Is Still Pretty Sure Trump Voted For Obama 1964. Google is giving Google Apps away to more Microsoft Office customers for free 1965. Obama says the US and Italy are working together in Libya 1966. The Palestinian Question: Why the Two-State Solution is Kaput 1967. Donald Trump eviscerates Chris Christie fo... 1968. Obama's Disappointing Decision to Skip Scalia's Funeral 1969. Obama to deliver statement on economy Tuesday, after inversions ... 1970. Microsoft blockchain-as-a-service embraces Ripple. 1971. Why Oil's Collapse Is So Dangerous for Stocks -- and the Economy 1972. Five triggers that changed your market while you were sleeping 1973. Ad of the Day: Microsoft Teaches Kids About Brilliant Female ... 1974. Obama slaps sanctions on four people over Burundi violence 1975. Battle Rages as GOP Saves Obama Plot to Diversify Neighborhoods 1976. Modi govt has got Indian economy stuck in a rut: Chidambaram 1977. Is it too late for peace in Israel/Palestine? 1978. Global Finance Leaders Meet as Economic Skies Darken 1979. Microsoft announces general availability of Azure Search Basic and ... 1980. Australian election 2016: Malcolm Turnbull rebukes Shorten for ... 1981. Microsoft-Backed Startup Has a Genius Way to Give People Wi-Fi in ... 1982. Award Winning Astronomy Guide Star Walk 2 Comes To Microsoft ... 1983. Where will the Next Global Economic Crisis Explode? Colossal ... 1984. With HoloLens, Microsoft aims to avoid Google's mistakes 1985. Xbox One Backward Compatibility: The SIX Xbox 360 games for ... 1986. Michelle Obama is heading to "Carpool Karaoke" 1987. Assessing the Health of China's Economy 1988. Federal Reserve's interest rate hike 'will benefit eurozone and global ... 1989. Public boards help boost Andy's economy 1990. Bernie Sanders Meets With President Obama Ahead of Iowa ... 1991. Wednesday, 20 Apr 2016 1992. Microsoft testing app handoff feature for Windows 10 1993. Economy on track for moderate growth: RBA 1994. Obama calls for rapid Zika research as virus seen spreading 1995. Service Members, We Never Take You For Granted Obama 1996. Lodhi urges UN to resolve Kashmir, Palestine disputes 1997. Microsoft OneDrive for iOS updated w/ iPad Pro & Apple Pencil ... 1998. George Zimmerman Blasts Prez Obama for Fake Tears 1999. Vancouver real-estate market could create problems for economy ... 2000. President Obama to skip Nancy Reagan's funeral to attend festival 2001. Microsoft Lumia 950 Review 2002. Can the US Economy Survive Fed Tightening? 2003. Don't worry, Israel, if Australian MP's are mates with Palestine 2004. Obama's Nuclear Paradox: Pushing For Cuts, Agreeing To Upgrades 2005. Tribridge Health360 Accelerates Population Health Management ... 2006. Obama just released the biggest energy efficiency rule in US history 2007. FTSE down as Chinese data raises concerns over global economy 2008. Obama commutes Clarksville man's life sentence 2009. Will 2016 Be Microsoft Corporation's Best Year Yet? 2010. Ankara expected to open EU economy chapter next month 2011. Finland's Problem Isn't the Euro 2012. Economy Shoe Shop joins legal action against the Nova Centre 2013. Sanders and Trump really are the candidates of economic pessimism 2014. Microsoft Lumia 950 review: Not a flagship, but a first step 2015. Google And Microsoft Top The Most Popular Mutual Fund Stocks 2016. Gears Of War 4 multiplayer beta starts April 18, announce Microsoft 2017. Obama: Trump shouldn't make Supreme Court pick 2018. Palestinian Security Forces Uninformed About Engagement in Saudi ... 2019. Jack Ma confident in EU's economic recovery 2020. There's one key area that Microsoft CEO Satya Nadella hasn't ... 2021. Bank of England: some predicted risks to economy have begun to crystalize; will act to support jobs, growth 2022. Microsoft, Google make peace after decade of fighting 2023. Indian economy a haven of stability: Pranab Mukherjee 2024. Workers are taking on more risk in the gig economy 2025. Venezuela says better oil loans deal reached with China 2026. Can Brazil's new president save a crippled economy? 2027. Prospects still slim for major global economic pickup 2028. Najib: Malaysia's economy very stable and assisted by GST 2029. World economy looks a bit like it's the 1930s, says Morgan Stanley 2030. Microsoft Edge browser gets its first three extensions, more to follow 2031. IMF trims euro zone growth outlook, keeps spotlight on ECB 2032. GUNDLACH: If manufacturing isn't a good indicator of the US ... 2033. Microsoft: 'Here's $200 for your old laptop' 2034. Obama Vetoes Republicans’ Repeal of Affordable Care Act 2035. Orlando shooting: hate that Barack Obama dares not speak 2036. Obama, Castro Acknowledge 'Serious Differences' Amid Historic Visit 2037. Twice a refugee, Al-amouri reflects on the displacement of the ... 2038. Palestine crafts largest UAE flag 2039. Global funds tiptoe from share slump into China's 'new economy' firms 2040. Limbaugh Heard The Warning Obama Admin Just Issued ... 2041. Okupe 'lectures' Buhari on economy 2042. Less poverty but South Africans more pessimistic about economy 2043. US economy shows resilience with robust hiring in December 2044. Vatican's Recognition of 'Palestine' Comes Into Effect With New Year 2045. China's economic slowdown adversely affected India: Rajan 2046. New Microsoft Office 365 Business and Enterprise tiers explained 2047. Russian Officials Scramble For Solutions As Low Oil Price And ... 2048. Microsoft Stock: Analyzing 5 Key Customers (MSFT) 2049. Palestine's Salah: Incarceration 'strengthens my resolve' 2050. Obama to announce Supreme Court nominee at 11 a.m. ET 2051. WATCH LIVE: Obama Speaks at Counterterrorism Center 2052. China's economic trend to be 'L-shaped': People's Daily 2053. Obama's conflation and obfuscation about Israeli settlement boycotts 2054. Microsoft Releases Updates for Several Windows 10 Apps ... 2055. Tackling graft key to saving economy | Bangkok Post: opinion 2056. IMF will lower growth forecast for German economy after Brexit, official says 2057. Microsoft confirms production of Surface 3 tablets will end in late 2016 2058. In Obama's budget, a suggestion more multinational corporate ... 2059. Obama defends actions on transgender policies 2060. The Microsoft Band 2 Review 2061. 5 things to know tonight: Check out photos of President Obama ... 2062. Obama says he doesn't yearn for third term 2063. Obama signs major overhaul of toxic chemicals rules into law 2064. Taiwan trims interest rate again to boost economy 2065. Windows 10 will soon let you prevent updates while you're at work 2066. Microsoft Hints At Another Anti-Carrier Shift In Wireless 2067. Microsoft unveils its new vision for Windows 2068. Carefully watching how Oil price falls affect Japan's economy BOJ ... 2069. Occupy Obama: He orchestrated a massive transfer of wealth to the ... 2070. Obama's Russia Policy Risks War 2071. Life good but economy a concern for most Calgarians 2072. HKICC 2015 to uncover the benefits of digital economy for Hong Kong 2073. Obama zings Barkley at Villanova's celebration 2074. How Was Your Day … Palestinian-American Muslim Jew? 2075. Microsoft expands its Azure cloud platform to South Korea 2076. Growth at risk as factories stuck in rut 2077. Before Pivotal Primary, South Carolina Dems Forgive Bill Clinton's ... 2078. Surprise! President Obama Crashes White House Briefing for ... 2079. Microsoft Won't Update Windows 10's Data Collection Services, and ... 2080. Microsoft mysteriously removes latest Windows 10 build from .ISO availability 2081. The Economy Hub: Immigration boom flatters 2082. BDS Is Not Pro-Palestine 2083. It's a huge day for markets, politics, and the US economy 2084. Microsoft website leak hints that Edge browser extensions are approaching release 2085. Transit use falls as economy rebounds 2086. Microsoft releases open source CentOS-based 'Linux Data Science Virtual Machine' for Azure 2087. The Challenge of Making the Sharing Economy Count 2088. Czech PM, president clash over migration, concur in economy 2089. Microsoft’s massive Black Friday sale is now live for dozens of Xbox One games 2090. Microsoft reportedly launching 'Xbox TV' devices next month 2091. From the Airliner to the Bomber 2092. A truth we hate to admit we are one people in Europe 2093. Microsoft works with GameStop to help Xbox One combat ... 2094. Gross: China Is 'Mystery Meat' of Global Economy 2095. China: Canary in the Global Economy Coalmine? 2096. IMF: Malaysia's economy still vibrant 2097. Report: Fuel economy standards for 2025 will save consumers up to $8000 2098. Brazil New Vehicle Sales Fall 25.4% in First Half Amid Poor Economy 2099. Are We Living In The Experience Economy? 2100. Russian Economic Development Minister urges further development ... 2101. Donald Trump takes aim at President Obama's planned executive ... 2102. Obama tweets: I'm going to Cuba 2103. Ibec warns of 'growing pains' as economy improves 2104. Microsoft's new tool for building line-of-business apps is now in ... 2105. Obama Bars Atlantic Offshore Oil Drilling in Policy Reversal 2106. A Reporter Asked Hillary Clinton About Obama And Her Answer ... 2107. Franklin Graham Demands Obama and Clinton Stop Denying The ... 2108. Why the Palestine solidarity movement in South Africa has to evolve ... 2109. Brazil's economy to contract nearly 4 pct., analysts say 2110. Video: Remember when Barack Obama said we couldn't just drill ... 2111. America's Syrian Shame 2112. What China's PMI Report Tells Us About the Economy 2113. Australian church: Jesus was not Palestinian 2114. Obama fabricates a legacy of economic achievement 2115. GLOBAL ECONOMY WEEKAHEAD-US retail sales and Yellen ... 2116. US jobs may offer global economy solace after stalled growth 2117. Israel PM Demands Pro-Palestine Ads Removed 2118. Microsoft axes chatbot that turned inappropriate on Twitter 2119. Amazon extends AWS Directory Service for Microsoft Active ... 2120. Microsoft Band 2 online pre-orders now open in Australia, shipping ... 2121. EU referendum: Brexit 'likely to damage Scotland's economy' 2122. Think-tank warns of Brexit damage to Scottish economy 2123. Obama to deliver statement on Orlando shooting 2124. Railroad titan CSX expects the economy to be 'challenging' in 2016 2125. Microsoft adds QR codes to the Windows 10 Blue Screen of Death 2126. Obama's Nordic nonsense reveals ingornance of world affairs 2127. Jaipur Literature Festival: India's 'complicit' role in the Palestinian occupation discussed by BDS founder 2128. Obama to Congress: Give Me More Money to Fight Zika 2129. It's Not a Sign of Economic Health When Soapmakers Lead S&P 500 2130. State Senate must focus on bills that improve economy 2131. Economy and Rona dominate agenda as Quebec national assembly resumes sitting 2132. Obama accuses Donald Trump of campaigning by 'scapegoating' 2133. ECONOMY: The real state of union in 2016-- strong job market ... 2134. Hillary Clinton repeats half true claim economy does better with ... 2135. A Microsoft star seeks to run North Dakota 2136. Microsoft Finds New Customers In Cannabis 2137. President Obama, Presidential Candidates Respond 2138. Indonesia to Host International Conference on Palestine-Israel Issue 2139. Nigeria's economy slowed in late 2015 2140. Obama to Announce Supreme Court Nominee Today 2141. Microsoft reveals details of updated XBox One 2142. Obama Warns Against Giving Into Election Year Cynicism 2143. The Latest: Bodies of East Texas flood victims identified 2144. Obama meets massacre survivors, assails homegrown terrorism 2145. China Presses Economists to Brighten Their Outlooks 2146. Xi to meet Obama soon: Chinese PM 2147. Japan's economy improved but weak; Abe set to delay tax hike 2148. Obama to pay respects to Scalia 2149. Microsoft Recognizes Behavior In Images 2150. Americans Aren't Anxious About the Economy. So What Are They ... 2151. New quarterly reports to show changes, health in local economy 2152. The Bucks Meet President Obama 2153. US new-vehicle fuel economy edges down in June 2154. Obama Administration Used Ethnicity As Reason To Force Judge To ... 2155. Obama Economy: Thousands of Americans Losing Their Jobs as ... 2156. Microsoft launches a new era of software 2157. This Week in Palestine Week 11 2016 2158. After many promises, Microsoft accelerates Windows 10 preview ... 2159. The Word from the Street: Analyst Recommendations for Microsoft after Fiscal 3Q16 2160. RBI board meeting: Raghuram Rajan says economy gaining ... 2161. What went so wrong with Microsoft's Tay AI? 2162. I have changed my mind on Brexit 2163. Microsoft's new premium Office 365 subscription for businesses is here 2164. Col. Republicans blame hacker for official's racist anti-Obama photo ... 2165. Major airlines are set to launch a below-economy class 2166. Obama honors Connecticut woman as Teacher of the Year 2167. Windows Mobile requires Office subscription to edit docs next year 2168. Chris Christie compares Ted Cruz, Marco Rubio to Obama 2169. Bank of Canada strikes cautious tone as dollar weighs on the ... 2170. Damiani Creates Custom Cover For Microsoft Lumia 950 2171. Obama cites gains in health coverage during Milwaukee visit 2172. San Bernardino Shooting: Carly Fiorina Accuses Obama and Hillary ... 2173. Grab Microsoft's Surface 3 docking station for just $80 at Best Buy 2174. Canada's economy grows for first time in three months as factories ... 2175. Malaysia economy grew by 5 per cent last year, says Bank Negara 2176. Obama calls Orlando nightclub shooting an attack on all Americans 2177. Microsoft settles into its Vancouver "second home" 2178. Future Economy panel, govt agencies will study SBF paper: Heng 2179. Microsoft to work with cannabis compliance tech firm Kind 2180. FM: Indian economy has emerged as one of the fastest growing ... 2181. World Bank appraises Azerbaijan's actions to protect economy 2182. Microsoft partners Italian firms to empower youths through ... 2183. Turns out, climate change hurts globalized economy too 2184. Obama tells Americans terror will be defeated 2185. Six-metre Mandela statue unveiled in Palestine 2186. UK economy to grow strongly in 2016 despite global slowdown, EY says 2187. Reforms to solve economy's core problems 'not visible':Patnaik 2188. Microsoft teases Ignite 2016 with four new videos 2189. Obama's Plan To Visit London To Lobby Against Brexit Infuriates ... 2190. Warren: Obama administration 'shockingly weak' on corporate crime 2191. Peterson donating $100,000 to aid flooding victims in Texas hometown 2192. GUEST EDITORIAL: Up-and-down economy needs prudence 2193. Microsoft's Gates to start multi-billion-dollar clean tech initiative - report 2194. Nigeria: Is the Economy Poisoned By CBN $ Hoarding? 2195. Obama applauds German Chancellor Merkel's pro-refugee stance 2196. Tech Moves: Donuts names new execs; Microsoft hires director for ... 2197. Dominant UK services sector dips in December amid further signs the economy slowed at the back end of last year 2198. US University Orders Student Remove Palestinian Flag from Dorm 2199. Obama's consumer protection legacy defined by aggressive agency 2200. The Values Revolution: Embedding Empathy in the New Economy 2201. GOP Congresswoman: Obama Stood Up For ISIS When He ... 2202. In China, role of gov't and needs of market economy still clash 2203. Dubai teams up with Microsoft to develop special font named after ... 2204. Obama emerges as key anti-Trump messenger 2205. Power production to improve economy: Shahbaz 2206. Trump: 'I understand the world much better' than Obama 2207. Vietnam frees jailed dissident priest ahead of Obama's visit 2208. India May Be Third Largest Economy after 2030: UK Think Tank 2209. Forget Apple Inc.; Here's Why I'm Bullish on Microsoft Stock Instead 2210. Low oil prices - good or bad for economy? 2211. Patient POTUS Meets With Another Australian Prime Minister 2212. New UN human rights adviser for Palestine rebuffs anti-Israel allegations 2213. Russia's 'Obama' ice cream deepens chilly relations with US 2214. Kenya: Economy to Grow at 6 Percent in 2016 - Report 2215. 70% Of Obama's Budget Is Writing Checks To Individuals 2216. Tesla Isn't Feeling the Pain From Weak Global Economy, Unlike Apple 2217. Intel has driven a dagger through Microsoft's mobile strategy 2218. Why the economy is still fragile 2219. Ohio economy has taken a 15-year slide 2220. Ted Cruz Wishes Obama And Hillary Would Stop Forcing Him To Be ... 2221. SC raps Google, Yahoo and Microsoft for failing to check pre-birth ... 2222. Fed's Evans Speaks: Rate Hike Timing, Policy, Economy 2223. BOE's Cunliffe says UK economy to grow slowly 2224. Obama's FTC Cherry-Picks Data to Paint Auto Dealers as Anti ... 2225. Microsoft on cross-network play, Xbox One dev kits and more 2226. The Microsoft Band 2 finally supports Cortana on Android 2227. Microsoft launches developer documentation site with user-friendly ... 2228. Citigroup Says No To Sanders And Clinton, Microsoft Says Yes 2229. Microsoft Dynamics CRM Update Adds Project, Field Service ... 2230. East Palestine council considers laws to regulate farm animals 2231. Xbox 360's Red Ring of Death cost Microsoft $1 billion 2232. Malaysia's Economy Grows 5.0 Per Cent In 2015 2233. Obama criticises David Cameron for having no long term strategy in Libya after Gadaffi overthrow 2234. Obama touches down in Malaysia 2235. Pence backing religious freedom in LGBT rights debate 2236. To say that what happens in China doesn't matter to the US is to ignore how the global economy works 2237. Microsoft exec: 'AI is the most important technology that anybody on the planet is working on today' (MSFT) 2238. Log InRegister 2239. Obama plunges ever deeper into 2016 US presidential contest 2240. PCWorld Show Episode 7: Microsoft's walled PC gaming garden ... 2241. Insight - China's innovation economy a real estate bubble in disguise? 2242. Lumia 650 available for pre-order at Microsoft Store in Ireland 2243. Interest rates not holding back economy: Raghuram Rajan 2244. Microsoft plots data centers in Germany to stifle U.S. surveillance 2245. At last . . . Northern Ireland's economy outstrips rest of UK 2246. Microsoft Releases Protocol To Standardise Code Editing ... 2247. The architectural foundation for the next 20 years? Microsoft aims ... 2248. Tough economy, alcohol fuel suicide risk in men: Study 2249. Microsoft Openness Days is their first-ever open source conference ... 2250. How Will Fed Rate Hike Impact the US Economy? 2251. Venezuela's Opposition Must Focus on Healing the Economy 2252. Obama says Orlando victims’ families pleaded with him to stop the violence 2253. Microsoft bets on Apache Spark to power its big data and analytics ... 2254. Obama's covert immigration plan underway 2255. Obama’s cancer-fighting initiative to cost $1 billion 2256. How the rapper Common replaced Satya Nadella as the voice of ... 2257. Obama's new retirement rule is a big mistake 2258. The New Economy: Feds may change rule on overtime 2259. Thanks, Obama 2260. Obama says no specific, credible terror threat over holidays 2261. Republicans oppose Obama on double turkey clemency 2262. Putin vs. Obama - Who's Winning in Syria? 2263. The War On Drugs (The Economy And Interest Rates) 2264. Palestine, Heart of Mine 2265. Five Ways to Destroy the U.S. Economy 2266. Fed's Lockhart: June is a 'live meeting' 2267. Trump: Obama Is Trying to Make Terrorism into Guns 2268. Key Obama ally jabs Sanders on eve of Iowa caucuses 2269. Microsoft Announces Dates of Xbox Digital Black Friday Deals for India 2270. Anglo American failed to adapt to a booming China economy 2271. Mind numbing stupidity: Obama slammed on Twitter for going to ... 2272. The bright spot of the world economy is looking 'sluggish' 2273. Rebalancing the economy 2274. Gov't budget selects 8 economic zones 2275. France-Palestine. Sylvain Cypel claire le Moyen-Orient 2276. A Look Back at Young Barack and Michelle Obama's Style 2277. 'Prayer for Rain': How Israel Uses Water as a Weapon of War 2278. Obama previews new criminal justice reforms on prisoner re-entry 2279. FANG stock scorecard; Microsoft & McDonald's comebacks; Apple's ... 2280. Obama 2013: Assad must go. Obama today: Hopefully Assad won't ... 2281. Court should police Obama's overreach 2282. Talk at Columbia Public Library by Palestinian refugees to proceed ... 2283. PEX Report: Index Rises at Start of Trading Week 2284. Obama urges Asian-Americans to stand up to bigotry 2285. Metlife's escape of 'too big to fail' label is defeat for Obama ... 2286. Obama refuses to publicly endorse Clinton 2287. Mitsubishi fuel economy scandal will result in $1.39 billion loss 2288. Western ambassadors regret economy minister's resignation 2289. Could an Obama-Ryan Tax Plan Fix America's Labor-Force Woes? 2290. Exploring Palestine 2291. Obama dives into Brexit debate on London trip 2292. European shares rally as Fed move shows confidence in US economy 2293. Sask. premier calls for 'economic assessment' of climate initiatives 2294. Cleveland man arrested for saying he wanted to kill Clinton, Obama 2295. Microsoft risks IT ire with Windows 10 update push 2296. Senate GOP files motion to roll back Obama overtime rule 2297. SE Asia summit to launch regional economy 2298. Growth in UK economy slowed this year, ONS says 2299. Obama plays peacemaker as Democrats attack 2300. New high-end Surface Book, Surface Pro 4 models crank up the firepower 2301. Aretha Franklin brings President Obama to tears with breathtaking ... 2302. Alberta economy too dependent on oil and gas: report 2303. Michelle Obama: For girls, a heartbreaking loss -- and an opportunity 2304. U.K. GDP Grows More Than Estimated; Current-Account Gap Widens 2305. Faminist totally occupied by Palestine 2306. President Obama calls for gun law changes, hours after House ... 2307. Obama claims progress on Islamic State amid worrying signs 2308. Is Clinton Moving to the Right of Trump on Israel-Palestine? A ... 2309. 'Ambitious agenda:' Alberta government promises bills on carbon tax, economy 2310. Even the Washington establishment will disdain his foreign policy ... 2311. Oil downturn 'impacting on broader Scottish economy' 2312. GLOBAL MARKETS-Stocks fall as economy view sours; yen jumps 2313. Obama reaffirms U.S. to deter aggression against Gulf Arabs 2314. Obama Says Senate Obligated to Vote on Supreme Court Nominee 2315. The trucker's nightmare that could flatten Europe's economy 2316. Underlying Trend in US Economy Still Positive 2317. Obama's advisers just dismantled a key myth about the future of ... 2318. Saudi Arabia's Vision 2030 to Transform Its Oil-Dependent Economy 2319. China central bank advisor says economy faces headwinds amid ... 2320. Branstad raps Obama on transgender bathrooms 2321. Microsoft Aims to Wrangle Data for Office Teams With SharePoint ... 2322. Russian government commission on foreign investment to consider ... 2323. Jobs, economy top priorities as Ontario legislature resumes Tuesday 2324. Obama: GOP jeopardizing judicial integrity with Garland 2325. Devaluation of the Chinese Yuan poses risk for global economy ... 2326. Obama is off to Asia to boost trade, cooperation 2327. Manufacturers grew a little faster in May, ISM shows 2328. Nigerians Look to Surprise Treasurer to Fix Battered Economy 2329. Microsoft Surface Pro 5 Features, Specifications and Price 2330. US stocks hit two-month low 2331. Barack Obama: 'Donald Trump will not be president' 2332. Carney and Yellen pull out of ECB conference to focus on markets 2333. Pricing Power Starting to Materialize as U.S. Economy Improves 2334. Ruling on Obamacare Threatens Economy 2335. Hollande 'Depressed' by Obama's Lack of Anti-ISIL Resolve 2336. Microsoft Monday: 3 Windows 10 Update Problems, New Xbox One ... 2337. Palestine President Abbas due Sunday 2338. Wednesday, 6 Jan 2016 2339. Microsoft pushes out a new Xbox Preview Update for the Xbox One ... 2340. Rebuild to cross halfway point in 2016 2341. It's Obama's Auto IndustryBut Not For Much Longer 2342. As economy crumbles, Sudan ditches Iran for Saudi patronage 2343. Pakistan economy falls behind on growth and needs structural ... 2344. LSE chills Palestinian students' speech on 'intifada' under pressure ... 2345. Report: Palestinian ISIS Fighter From Virginia Nabbed in Iraq 2346. Bill Maher one step closer to birthday visit from President Obama 2347. Obama's Animus toward Israel May Lead to War 2348. What's the Biggest Risk Facing the US Economy in 2016? 2349. President Obama Bans Solitary Confinement For Juveniles In ... 2350. Obama’s Supreme Court Nominee Merrick Garland Could Save the US Climate Plan 2351. Alphabet (GOOGL) and Microsoft (MSFT) Shares Fall on Earnings ... 2352. Obama backs effort to give consumers options on cable boxes 2353. Wildfires in Alberta will hurt economic growth, Bank of Canada says 2354. How the on-demand economy is transforming summer jobs 2355. Obama Shrugs Off North Korea's Offer to Stop Nuclear Tests 2356. Why PH is seen to become $1-T economy by 2030 2357. Court upholds Obama-backed net neutrality rules 2358. Hilarious Viral Facebook Post Shows That There Is Still Hope in the ... 2359. As economy improves, more bankruptcy filings expected 2360. Campaign launched to save Hirbawi, Palestine's only keffiyeh factory 2361. Ellie Kinnaird: Suffering of Palestinian people must not be silenced 2362. For cash-dominated economy: SBP issues strategy to counter fake ... 2363. Global Stocks Slip Amid Economy Concerns 2364. Obama's comments on Clinton email raises concerns of bias 2365. Markets await services data for clues on UK economy - business live 2366. Economy adds just 38000 jobs in May 2367. Microsoft's first laptop is coming to the UK on Tuesday 2368. Facebook, Microsoft say they've closed gender pay gap 2369. Greek economy shrinks 0.5% in first quarter, contraction revised up 2370. The gender pay gap is dead 2371. What Australia's Hung Parliament Means for the Economy 2372. Recalls this week: power cords, vacuum cleaners 2373. Obama's foreign policy guru is the 'blob' he hates 2374. Syrian Refugee Benefits To B.C. Economy Could Total $563 Million ... 2375. A new year, with the economy on the same track 2376. Microsoft appears to be copying Apple's 2014 Continuity Handoff ... 2377. Microsoft offers Surface-as-a-Service from its own stores 2378. Microsoft Goes Live with Azure Container Service 2379. How to Save Outlook.com Emails to Microsoft OneNote 2380. Russian, Pakistani officials discuss fuel and energy projects — ministry 2381. Propaganda cannot manage Ghana's economy Bawumia tells NDC 2382. A Fed Up Obama Calls Republicans Insane For Supporting Selling ... 2383. Wednesday, 9 Mar 2016 2384. Media Melts Down: Study Shows Networks Devote 105 Minutes to ... 2385. Belgian emergency servives 'only recognize Palestine' 2386. Satya Nadella on lessons from the new Microsoft: 'The wave you ... 2387. Microsoft backs off click-the-X trick in Windows 10 upgrade pitch 2388. SimpliVity Joins the Microsoft Enterprise Cloud Alliance 2389. House Votes Tuesday to Override Obama's Veto of Bill to Defund ... 2390. Suzuki offices raided in Japanese fuel-economy probe 2391. South Korea’s economy grows 2.7 percent, slowest since July 2392. PM Modi's 7th Meeting With Obama Next Week. Here's The Agenda. 2393. China's economic outlook uncertain but consumption should rise 2394. Most economists say Brexit will harm economy - poll 2395. Malaysian economy February industrial production rises 3.9% on ... 2396. Supreme Court Hands Obama Admin's EPA Another Loss 2397. Obama's Violating the Constitution by Not Submitting Climate Treaty ... 2398. Obama Just Added Three More National Monuments 2399. Satya Nadella: Microsoft's technology is everywhere, even Cuba and Iran 2400. Microsoft launches invitation preview of collaborative work app ... 2401. Housing for All may boost economy by 3.5% by 2022: Ind-Ra 2402. Obama to make 1st visit to a US mosque 2403. Obama Looks to Chicago Blackhawks for Assist on SCOTUS Nomination 2404. Microsoft launches Power BI Embedded in public preview 2405. Downturn in Alberta economy blamed for WestJet suspending direct ... 2406. Fed's surprise message: June hike likely if economy improves 2407. UPS and other companies have big plans for the circular economy 2408. Santorum: Obama, Hillary created ISIS 2409. Lowdown: Microsoft Tops 'Breakthrough' Ad Ranking 2410. How to disable impending IE nag notices 2411. U.S. economy adds 215,000 jobs in March; unemployment rate is 5% 2412. Whites have owned economy for too long - Ramaphosa 2413. New Windows 10 Mobile preview brings phone notifications to your PC 2414. There is nothing happy about this new year for Palestinian workers 2415. Barron's: John Kasich Is Best Republican Pick for Economy, Markets 2416. The AMAZING Surface Pro 4 DETAILED In Full: Specs, Hardware ... 2417. Obama Unveils Offshore Plan: What Awaits Drillers? 2418. EP this week: banks, Euronest, migration, Palestine 2419. Congress warns Obama to enforce foreign fighter ban against Iran 2420. White House offers fresh hints on possible visit to Hiroshima by Obama 2421. Krauthammer: WH Advisor Ben Rhodes "Completely Embarrassed ... 2422. China Delays Economic Liberalization 2423. Tourism gives glimmer of hope for New Caledonia economy 2424. Obama commutes prison sentences of 58 people 2425. Turkish tourism and economy struggle due to bombings, Russia chill 2426. Microsoft is working on a business app store named 'AppSource' 2427. Gays say Israel 'pinkwashing' to distract from Palestinian occupation 2428. Palestinian 3000 Nights wins the TaoEdu Young Prize at Italy's ... 2429. Najib: IT giants want Asean to develop digital economy 2430. Can the economy get better? 2431. Ghana drops in economic rankings 2432. Can Legal Cannabis Saved the US Economy? 2433. Global economy 2434. President Barack Obama outlines new US gun control plan in ... 2435. Microsoft gears up to roll out HoloLens beta kits, Actiongram mixed ... 2436. Obama About To Reveal Self As Bought-And-Paid For Corporate ... 2437. Worcester Economic Club hears upbeat talk on rate hike, economy 2438. Economy, security crises in focus as Obama arrives in Germany 2439. ACLU Hammers Obama's Attempt To Abuse The No Fly List 2440. Microsoft announces the Xbox One S, its smallest Xbox yet 2441. Say yes to opportunities offered by the post-Brexit digital economy 2442. Clouds over German economy as industrial output, exports fall 2443. India's bad loan worth may be bigger than New Zealand's $170-bn ... 2444. The political economy of endless austerity 2445. Sharing economy can help financial struggles 2446. Venezuela economy shrank 4.5% from January to September 2447. Chuckwagon drivers latest casualties of slowing Alberta economy 2448. OBAMA: The Republican economic 'mythology' needs to be thrown ... 2449. Christie: Obama a 'feckless weakling' 2450. Rays beat Cuban national team in front of Obama, Castro 2451. Does US have enough thrust to propel the rest of us? 2452. Is the European Economy Stronger Than People Think? 2453. WB acknowledges Pakistan's growing economy 2454. FLASHBACK: UN nominee says US must impose peace on ... 2455. Palestine 0 Saudi Arabia 0: Van Marwijk's 100 per cent start ends 2456. Report: Obama looking at Iowa candidate to replace Scalia 2457. Obama Urges Americans to Get Ready for Hurricane Season 2458. Make bypass help traffic and economy 2459. Top Obama Aide Pushes Diversity in National Security Corps 2460. Bank of England opens £250BILLION war chest to try and save ... 2461. Microsoft appears to be building a business app marketplace 2462. 'Microsoft is paying a fair price for a unique asset': Here's what Wall Street is saying about the massive Microsoft ... 2463. Obama nominee died after waiting two years for confirmation 2464. Microsoft's Minecraft for schools is now available in beta 2465. Obama to Leave About 8400 Troops in Afghanistan at Year-End 2466. Analysts Spotlight: Microsoft Corporation (NASDAQ:MSFT), 3D ... 2467. China shares end up slightly, concerns over economy cap gains 2468. How to Master Microsoft Office PowerPoint 2469. Russia targets Turkish economy over downed warplane 2470. Heard the one about the nuns and the Jewish settlers? 2471. Microsoft and SAP deepen partnership with Azure and Office integrations 2472. The Morning Download: Microsoft Targets Enterprise With ... 2473. Congress asks PM Modi to take charge of economy 2474. Microsoft buys Skype for Business management technology from ... 2475. Economy tops list of Iran's priorities: Leader 2476. Economic Affairs Committee chairman pledges to uncover truth ... 2477. Memorable moments for President Obama, First Family in 2015 2478. Nigeria: Communication Minister Says ICT Will Drive Knowledge ... 2479. Armenia Looks To IT To Lift Economy 2480. Asia's mobile-first economy and how the West is feeling the effects 2481. Wow: How Much Michelle Obama Just Cost Taxpayers For 24 ... 2482. Hagel says Obama 'paralyzed' Syria policy around Assad ouster 2483. Obama's Brexit Intervention Makes Waves in U.K., Ripples in U.S. 2484. Japanese firms less upbeat on economy, poll shows 2485. VIDEO: Wilmington mayoral debate on economy 2486. Obama admits US 'too slow' to condemn atrocities of Argentina's ... 2487. Relaxed RBA plays wait and see on economy 2488. Israel/Palestine: Is it too Late for Peace? 2489. Saudi Arabia, Palestine share points 2490. Obama Endorses Debbie Wasserman Schultz's Bid For Re-Election 2491. Microsoft to acquire LinkedIn for $26 billion 2492. Live: John Tsang says economy sluggish and outlook is bleak 2493. What happened to Vermont's export economy? 2494. Can agriculture save Tunisia's economy amid tourism crisis? 2495. Obama now wants guns from these 47000 people 2496. New Mexico region's economy steady, but consumer spending slips ... 2497. Apple to Launch 9.7-Inch iPad Pro to Compete Against Microsoft's ... 2498. Cuomo starts economy working group 2499. Microsoft online store launches with Tata CLiQ 2500. Obama's power over immigration drives Supreme Court dispute 2501. China Turns on Taps and Loosens Screws in Bid to Support Growth 2502. Singapore Seeks Global Currency Accord to Help Emerging Markets 2503. Dominican economy establishes itself as region's strongest 2504. Microsoft apologizes after AI teen Tay misbehaves - CNET 2505. Obama Gives His Final State of the Union 2506. Obama sings 'Happy Birthday' to Malia during Fourth of July party 2507. Sohi says immediate goal is to help boost economy 2508. Skepticism about climate change may be linked to concerns about ... 2509. Bank of England predicts Brexit will hit the economy and cause ... 2510. Bryan Fischer: Maybe Texas Will Secede Over Obama's Demonic ... 2511. Microsoft offers first major endorsement of new EU-U.S. data pact 2512. Obama to announce drug overdose prevention measures in Atlanta 2513. Traffic Guide for President Obama visit to Seattle 2514. Amid Political Crisis, Brazil Economy Faces Painful Downturn 2515. Obama Plays the Long Game in Latin America 2516. Expect President Obama's Final State Of The Union To Be A ... 2517. Qatar- President of Palestine Meets India's Foreign Minister 2518. Our new post-Obama Star Wars: Race, the Force and the dark side ... 2519. Microsoft's Holographic Platform Opening Mixes It Up 2520. Nissan selects Microsoft Azure to provide in-vehicle solutions for the ... 2521. On Microsoft and a wedding in Gush Etzion 2522. Goldman Sachs thinks Microsoft is making a comeback here's why 2523. Trump: If Obama's Goal Was to Weaken America, 'He Could Not ... 2524. Obama visiting Detroit auto show as industry flourishes 2525. Slumping oil economy still hurting eastern New Mexico 2526. Germany's economic model needs an upgrade 2527. Insurance Advisernet says unlocking benefits of data with Microsoft BI 2528. The Economy, Ever a Risk in Election Years, Is Good So Far 2529. Brexit will help lift US economy in long run 2530. Palestine and Israel in denial, blame game over negotiations 2531. From DOS to Windows: How Microsoft became one of the most ... 2532. Obama pleads for unity in Europe 2533. Docker's Unikernel acquisition: The Microsoft angle 2534. Obama Decries Terror, Hate Behind Shooting as Clinton, Trump Spar 2535. Tay tweets: Microsoft apologises for robot's racist and genocidal tweets 2536. Dear Doctor Obama: Cure the disease instead of focusing on ... 2537. IMF too soft and subtle about Malaysia's economy 2538. Cortana for iPhone review: Siri has little to fear from Microsoft's ... 2539. Democratic Governor Slams Obama's Moratorium on Coal ... 2540. England vs Wales Euro 2016 game 'costing British economy millions ... 2541. Messi responds to missed Obama meeting 2542. Dr. Ashrawi condemns the Israeli council's approval of an illegal ... 2543. 'If I keep saying it, it will come true': Obama downplays ISIS AGAIN ... 2544. Cayman Islands says Microsoft co-founder Paul Allen destroyed ... 2545. Jobs, economy top priorities in presidential campaign 2546. Ukraine's Government Report: Economy down 10.4% in 2015 2547. Does draft Palestinian social security law really protect workers? 2548. Officer makes Palestine boy's birthday special 2549. Allies Say Obama's Court Pick Is Near, and Will Be Hard for ... 2550. India Economic Growth Seen Steady; One More Rate Cut Ahead: Poll 2551. IMF Chief Says Vietnam's Economy Is at Risk Without Reforms 2552. French economy minister owes back-taxes: media 2553. Obama Nominates New Faith Leaders to Advise White House 2554. Microsoft to Surface Pro 4, Surface Book Users: Sorry for 'Less-Than ... 2555. Microsoft Races Towards the Cloud Amid PC Decline (MSFT) 2556. Harbor district claims zoning issues hurting economy 2557. Maine Economic Forecasters: Economy Continues to Grow 2558. NPR Publishes Map Replacing Israel With 'Palestine' 2559. Food banks in Saskatchewan feeling impact of sluggish economy 2560. Israel's economy minister to step down, paving way for natural gas plan 2561. Turkish economy minister hopes growth will reach 5 pct again 2562. Mexico would be an economic superstar without corruption 2563. Trump's trade rhetoric threatens U.S. economy, global standing 2564. Abe: The global economy is facing large risks 2565. Obama to visit New Zealand after he leaves office 2566. Here are 4 reasons why the Irish economy killed it in 2015 2567. Microsoft claims Google Chrome is a battery hog on Windows laptops 2568. Obama says US has 'momentum' in fight against Islamic State 2569. Introducing 'Virtual Microsoft' 2570. Monday, 18 Apr 2016 2571. Vox's History Of The Israeli-Palestinian Conflict Is Complete Garbage 2572. Bernie Sanders's supporters ignore what we learned from Obama 2573. Googling China's Economy Shows Shifting Sentiment 2574. Obama's 97 percent climate change consensus includes 'deniers' 2575. Lumia 650 Will Cost Under $200 And Could Be Microsoft's Last ... 2576. Why Christie may not welcome Obama at Rutgers 2577. Indian economy to be more attractive, stable: KPMG 2578. President Obama's Legacy and Race Relations in 2016 2579. White House distances Obama from robocall backing Rep Fattah 2580. Disappeared: NYT cuts Obama admission that he's out of touch on ... 2581. Microsoft OneNote offers up a chance to win a Surface tablet for the ... 2582. Awkward: Fed Chair Says Job Growth Under Obama Has Been ... 2583. Obama Urges Congress to Restrict Access to Arms for People From ... 2584. Cheaper, smarter ways to travel: How travellers can utilise the ... 2585. How the On-Demand Economy Is Reshaping the 40-hour Work Week 2586. The new Palestinian people 2587. Why April's Hiring Slowdown May Show Caution on US Economy 2588. Obama Nominee Considers Long-Term US Presence in Afghanistan 2589. Obama to weigh Supreme Court candidates this weekend 2590. EU Supports International Meeting on Israel-Palestine Conflict 2591. ICYMI: NWI economy recovering and all the business news you ... 2592. Report: Greater Houston Economy Has Contracted During The Past ... 2593. Review: Updated: Microsoft Surface Pro 4 2594. Eleven States Sue Obama Admin Over Transgender Bathroom Rules 2595. Obama Is So Hip, the White House Now Serves Chemex Coffee 2596. Nigerian Shiites march for demanding leader’s release 2597. Gig Economy: Better For Boomers Than Millennials 2598. 'Escape rooms' the latest in entertainment economy 2599. How Obamacare Is Fueling the Gig Economy 2600. Why so many economists back Obama's idea of a tax on oil 2601. President Obama's new open data initiative could help cities help ... 2602. The new heavyweight champion of the world wants to fight Barack ... 2603. US economy grows more than expected 2604. Chinese Economy 2605. Qatar World Cup organizers 'cannot ignore sharing economy' for ... 2606. European Commission says economy 'appears resilient' but caution urged over debt levels 2607. Ron Meyer & Donna Langley Praise Obama's Gun Violence ... 2608. Microsoft fixes actively attacked IE flaw and 50 other vulnerabilities 2609. Canada's Trudeau Optimistic on Boosting Economy 2610. Google, Microsoft, Mozilla preview WebAssembly in their browsers 2611. FLOTUS on the track: Michelle Obama makes rap video for college ... 2612. DPS students visit Fort Wayne in Obama's Every Kid in a Park ... 2613. Heng Swee Keat's Future Economy panel outlines five work areas 2614. Obama to host King Abdullah of Jordan at White House 2615. Indonesia's historic shift to an urban economy 2616. Obama Says World "Met the Moment" in Global Warming Pact 2617. Economic models predict GOP White House, even with Trump 2618. Obama's plan to close Guantanamo 2619. Obama deeply dismayed by vulgarity, violence of campaign 2620. It’s The Economy, Wise Guy By Okey Ndibe 2621. How certain are you that robots won’t create as many jobs as they displace? 2622. Wall Street Journal: Obama's 'Economic Pep Talk' Was 'Rudely ... 2623. Microsoft Lumia 650 now available in Australia for AU$299 2624. What's holding back the world economy? 2625. Economy to improve; private investments still a concern: Assocham 2626. Obama seeks more than $1 billion to fight opioid abuse 2627. Microsoft Lumia 550 Now Up for Pre-Order in the UK for 90 2628. How Much Did 'Snowzilla' Blizzard Cost The Economy? Not Much ... 2629. Mora Godoy who tangoed with Barack Obama was told not to dance ... 2630. US refuse to recognise Israeli settlements 2631. Microsoft Will Warn You of Government Snooping 2632. Modi among 'very close' world leaders Obama is inviting 2633. Barack Obama ratchets up tensions in the EU debate 2634. Wall Street ticks up on economy bets; Brexit fear ebbs 2635. 35 teams selected for Microsoft's Imagine Cup World Finals 2636. Obama, Cameron discuss efforts against IS 2637. Obama warns Islamic State leaders 'you are next' 2638. How the shift towards the digital economy is driving unstructured data 2639. India to be Fastest Growing Economy at 7.3% in 2016: UN Report 2640. Obama administration asks top court to revive immigration plan 2641. Microsoft Will Warn Users of 'State-Sponsored' Hacks 2642. Obama to travel to Germany, Japan, Poland, China, Peru during final year in office 2643. Microsoft Exec: No Silver Bullet to Fight Terror on Internet 2644. EMC to leave Microsoft beef behind after Dell merger 2645. Microsoft dives into social with $26 bn LinkedIn deal 2646. Obama, Republicans take Supreme Court fight to airwaves 2647. Obama the Obstructionist 2648. AFC Championship game could pump $10 million into metro Denver ... 2649. WATCH: U.S. Poverty Is a 'Death Sentence' Similar to Conditions in 'Palestine,' Says Sanders 2650. Microsoft introduces more Windows 10 lock screen ads, but ... 2651. Bawumia: NPP will revamp economy for jobs 2652. Grading Obama's Economic Legacy as Small Business Week Starts 2653. Oscar-Winner Ellen Burstyn on Rise of Trump: After Obama, Now ... 2654. PML-N aims to improve economy, says Ahsan 2655. Microsoft mistakenly caps some users' OneDrive storage limits 2656. Obama pledges solidarity with France 2657. Microsoft Lumia 950 XL review blog: Living with Windows 10 Mobile 2658. Microsoft to open-source the JavaScript core of its new browser 2659. Low oil prices are not helping the economy--What can we do about it? 2660. Obama makes historic visit to Hiroshima Peace Memorial Park 2661. Pound jumps after Obama's Brexit intervention; BHS on brink of ... 2662. Latest data show Japan's economy shrank 1.1 pct in Oct-Dec 2663. Trump Edges Clinton on US Economy, Defeating Terrorists - Poll 2664. Monkeys go wild: Microsoft makes Xamarin free 2665. Employers add 292,000 jobs, suggesting US economy may defy global weakness, market turmoil 2666. In Los Angeles, an Underground Half-Billion Dollar Economy 2667. Larger budget surplus this year turns into deficit in 2017 2668. Microsoft CEO Nadella invited to State of the Union 2669. Ypsilanti man to be awarded Medal of Honor by Obama 2670. EXCLUSIVE: Fujitsu delivers Microsoft's Skype for Business to NZ ... 2671. Microsoft to add Enterprise Advantage to MPSA licensing in early 2017 2672. JPY: Financial market turmoil likely to lead to weak economy - Nomura 2673. Microsoft Outlook for iOS updated with 3D Touch and email printing 2674. Obama, Trudeau drop gloves over hockey 2675. Obama reveals his economic, social vision for America 2676. Obama hopes Cuba trip can remake US image 2677. Moodys Slowing economy pressures revenue and leverage of ... 2678. PGA Tour is now testing an app for Microsoft HoloLens 2679. WATCH: I Will Nominate Scalia Replacement, Says Obama 2680. Microsoft Lumia 550 now available in the UK for £49.99 with new ... 2681. Better AI, big data, faster computing: Microsoft's 2016 predictions 2682. Microsoft's One-Handed Keyboard App Is Only for iPhones 2683. Barack Obama wades into 'Panama Papers' scandal accusing tax ... 2684. Obama takes two Air Force One planes to Argentina for sightseeing 2685. Obama will hold town hall on gun violence 2686. Netanyahu: Gas agreement vital for economy and security. 2687. Obama Decries Lack of Diversity in Baseball, Calls for Unity Against ... 2688. Brazil's economy shrinks by nearly 4 per cent 2689. Survey suggests rural economy remains weak in 10 states 2690. Pulitzer Prize winner Hedges to speak on 'Bringing Justice to ... 2691. Unbelievable photo released of Obama after spending less than 2 ... 2692. Barack Obama's Legacy: What happened? 2693. Main Street Morning: Microsoft is working with a gene-sequencing ... 2694. Russia to allot up to $5.3 mln in humanitarian financial aid to Palestine 2695. Conference on Human Rights Examines Recent Events in Egypt: Harvard Law School Serves as Venue for Global Discourse 2696. Why stocks need more than just strong economic data to jump 2697. Pfizer Inversion Stopped Because Obama Is Serious on Corporate ... 2698. Economy in good shape 2699. New Microsoft Technology Center opened in Houston 2700. Economists trim forecast on economy, but expect higher pay 2701. Microsoft just made Office apps far more powerful for the iPad Pro 2702. Microsoft Word Flow keyboard is being tested on iOS 2703. Obama, India's Modi to meet next month in Washington: White House 2704. Microsoft Makes A Cloud Push With New Dynamics 365 Software ... 2705. Family of flood victims says grandmother died trying to save grandchildren 2706. Obama seeing China leader as South China Sea tensions rise 2707. Obama says Senate obligated to vote on Supreme Court nominee 2708. BREAKING: Apollo Sold to Investors With Obama Ties 2709. UPDATE 1-Cheap oil, weak global growth to weigh on Kazakh ... 2710. ALEC: Mississippi Economy Just So-So 2711. Microsoft Edge WebGL Implementation Open-sourced 2712. BDS’s “South Africa moment”?: As states pass resolutions condemning BDS, it’s more important than ever to fight for ... 2713. Cleveland man investigated for threats against President Obama: I ... 2714. Twitchy Idiots SO MAD Obama Keeps Not Losing Jobs Over And ... 2715. Square Enix in talks to bring Final Fantasy 14 to Xbox One 2716. Can US Economy Really Decouple From Rest of World? 2717. Obama pays tribute to American heroes of the Holocaust 2718. UNRWA: 12 percent of Palestine refugees +40 years suffer from ... 2719. Microsoft won't make cash donations to GOP convention 2720. Liberal Pub: Replace Thomas Jefferson On The Nickel With Barack ... 2721. German economy grew at strongest rate in four years in 2015 2722. Palestine confident of upsetting UAE in 2018 Fifa World Cup qualifier 2723. No Putin-Obama Meeting in Pipeline Until Disputes Are Addressed 2724. India has firepower to withstand British exit from EU, says ... 2725. US economy adds 292000 jobs in December, jobless rate ... 2726. Premier Wall returns to power as Saskatchewan economy stumbles 2727. What Are The Pros And Cons Of China Being Granted 'Market ... 2728. Why Did Bernie Sanders Pick 'Palestine' as Poverty Benchmark? 2729. The Oscars revolution has been messy, but diversity in storytelling deepens the art and enriches us 2730. Iran to Stand Firmly by Palestine: Senior MP 2731. Microsoft is fighting the DOJ too 2732. Exclusive - Microsoft to warn email users of suspected hacking by governments 2733. North Korea Wrecks Obama's Nuclear Dream 2734. Michelle, Malia, and Sasha Obama Take on Moroccan-Inspired ... 2735. As Modi meets Obama, India, US & Japan get set to hold Malabar ... 2736. The surprising renaissance of Britain's economy 2737. Facebook hits back at Israeli complaints about sabotaging police work 2738. Obama to end half century conflict with Cuba trip 2739. 5 reasons why Venezuela's economy is in a 'meltdown' 2740. Tuesday, 2 Feb 2016 2741. Obama trip to Cuba includes spring break for his family 2742. Microsoft reveals the tricks behind its Magic Mirror 2743. President Barack Obama & Michelle Obama Are Set To Visit ... 2744. German economy fared well in Q1 as trade surplus grows 2745. Israel Has Failed To Shatter P... VIJAY PRASHAD. 2746. Raghuram Rajan, India's icon who tripped 2747. Microsoft Band Users Will Be Able to Compete With Facebook Friends 2748. Quotes Of The Day: Microsoft Co-Founder Bill Gates On Adversity 2749. Economy is a product of our time and place 2750. Brexit: President Barack Obama forthright in his views on the EU ... 2751. Australian emissions to grow 6 per cent under Direct Action 2752. Analyzing Microsoft’s Financial Performance in Fiscal 2Q16 2753. Microsoft closing in on Skype for Business for Mac public preview 1 2754. Pound To Euro Exchange Rate Crashes As EU Referendum Result ... 2755. Obama criticises Trump’s plan to halt remittances to Mexico 2756. UK GDP figures to be released amid global economic jitters 2757. Next up at the Supreme Court: Obama's Immigration Policy 2758. Study: Arts Impact Central Iowa Economy 2759. Microsoft Translator comes to Kindle Fire 2760. Obama tells Raul Castro: Cuban embargo is going to end 2761. Donald Trump Certain He Would Defeat President Obama in Round ... 2762. India remains global growth champ with 7.8 percent economy expansion in 2016 2763. Obama to Call for Greater Efforts to Combat Terrorism 2764. Spain's economy expands at 3.4% annual rate in Q3 2765. Windows 10 Redstone (Wave 1) could be coming in July 2766. President Barack Obama's skin looks different in Republican ads 2767. Here's a sneak peak at Microsoft's new Windows 10 Start menu 2768. Microsoft Launches Tap-To-Pay for Windows Phone 2769. US Economy Slows in Q3 despite Lower Energy Costs 2770. JPY: Economy struggling to sustain positive growth momentum - BBH 2771. Zim economy not going into recession: WB 2772. President Obama presents the Medal of Honor at White House 2773. World Bank cuts next year's growth aim to 4.5% 2774. Why Obama Is Only the Beginning for the US Liberal Movement 2775. Obama cheers economy as 'pretty darn great' 2776. Greece: Significant contribution of agro-food exports to the economy 2777. Obama calls Brazilian counterpart over spread of Zika virus 2778. 'Huge youth population bad for economy' 2779. Microsoft: Male-female pay gap nearly 0 2780. Malia and Sasha Obama Will Join the President and First Lady for ... 2781. Stronger economy lets ECB kick back 2782. Obama's ISIS strategy could hurt Hillary's bid: Darcy cartoon 2783. Trump previews AIPAC remarks on Israel 2784. How Will Obama's New Overtime Pay Plan Affect Your Shitty ... 2785. Microsoft's next Redmond expansion expected to go vertical 2786. Barack Obama: Brexit would put UK 'back of the queue' for trade talks 2787. House Zika Bill Is $1.3 Billion Short Of Obama's Request 2788. Wyndham remakes economy brand 2789. SF's gig economy comes into focus 2790. Islamic State Group In Gaza: ISIS Affiliate Gains Foothold In ... 2791. China Loses Another Economic Indicator as Minxin Suspends PMI 2792. A quick rundown of everything we know (and often forget) about the ... 2793. Obama-Clinton strategy on Benghazi: Obfuscate, quibble, attack, deny 2794. Assessing the State of Australia's Economy 2795. Obama admin decides to sell F-16s to Pakistan 2796. Economy in midst of "credit-less" recovery, need policy reforms push ... 2797. Microsoft Wallet is bringing tap-and-pay to Windows Mobile 2798. Lottery opponents say it would hurt poor, state economy 2799. Pakistan, Indonesia Lead in Malware Attacks: Microsoft 2800. Obama commutes sentences of 58 non-violent drug convicts 2801. Microsoft aims at computing platforms of the future 2802. What Are Presidential Candidates Saying About the 'Gig Economy'? 2803. Microsoft rolls out KB3116908 Cumulative Update for Windows 10 ... 2804. Microsoft, FBI Bust Wide-Scale Global Botnet Ring Called 'Dorkbot' 2805. How Millennials Are Changing The Global Economy 2806. US economy showing signs of life after slow start to year 2807. Obama's takes a licking on immigration 2808. Bug forces Microsoft to remove ‘Hey Cortana’ feature from Android app 2809. Brexit vote becomes crucial for US economy 2810. Obama endorsing Cameron's EU campaign makes him a 'hypocrite ... 2811. What's going on in RBI governor Raghuram Rajan's mind? Will he ... 2812. Obama: We will go after ISIS until it's 'finally destroyed' 2813. High hopes for economy 2814. China economic meltdown sparks sharemarket rout 2815. Amri Yahyah can be hero as Malaysia chase WC revenge vs ... 2816. First Lady Praises NY City College Diversity at Commencement 2817. Microsoft Lumia 950 and Lumia 950 XL Coming to India in December 2818. Spain's economy grew estimated 0.7 pct in second quarter 2819. Microsoft Dynamics Corporate VP Bob Stutz Reportedly Steps Down 2820. All the Dumb Pundits Who Said Bobby Jindal Was the "GOP's Obama" 2821. Obama: Israeli-Palestinian peace elusive, but must still try 2822. Microsoft yanks latest Windows 10 release from its download server 2823. Indonesian economy grows at slowest rate in six years 2824. Obama wants $4B to help students learn computer science 2825. The Palestine softball team managed just one hit in a 19-1 loss to ... 2826. Turning the economy around won't be easy but it can be done, says ... 2827. Microsoft Exec On Why We Haven't Seen A Revised Xbox One ... 2828. Post-Brexit Britain must embrace circular economy to trade with EU, says Green Alliance 2829. President Obama's Mother's Day Message Is Heartfelt & Real 2830. Microsoft's Manufacturing Vision: The Digital Nervous System 2831. Obama is fighting ISIS on the installment plan 2832. Obama gave the anti-Trump movement a rallying cry for 2016 ... 2833. Obama’s Biggest Gamble 2834. USD/JPY: bears lining up on mixed U.S. economy outlook 2835. Microsoft puts its DVR plans for the Xbox One on hold 2836. Services data brighten outlook for UK 2837. Microsoft Bags Windows Bridge for Android Apps 2838. Dangote pledges to assist FG to turnaround Nigeria's economy 2839. Japan CPI, consumer outlays falter as Abe loses economy czar 2840. Microsoft Awards ValChoice $120K to Advance the Industry's First Insurance Rating Service for Consumers 2841. Home Apps Microsoft Redesigns Outlook for iOS and Android ... 2842. Obama silent on fate of hometown mayor amid racial unrest 2843. World NewsSouth African economy shrinks 1.2% in Q1 2844. Microsoft comes out in support of UK remaining in EU 2845. Does Microsoft Care About Customers? 2846. 'Obama must tell Turkey, Saudi Arabia & Israel enough is enough ... 2847. Andy Grove on Trade, Globalization, and Defending America's ... 2848. How Millennials Are Driving the Sharing Economy 2849. Economy faces risks: India Inc 2850. The dogmas destroying UK steel also inhibit future economic growth 2851. East Palestine will turn attention to alley repairs 2852. Sensitive financial data 'missing' from central bank report on capital ... 2853. Beyonce, Easter Bunny highlight Obama's final egg roll 2854. Proof That Obama Was Wrong About Cuba 2855. Saturday in Yosemite: Obama says U.S. needs to preserve national ... 2856. Turkey's Erdogan says Obama spoke 'behind my back' on press ... 2857. Why April's hiring slowdown may show caution on U.S. economy 2858. South Africa's Economic Crisis Calls For More Than Finance ... 2859. Obama: US 'heartbroken' after Turkey airport attack 2860. Mozambique's guerilla warfare crippling the economy 2861. Microsoft Says Windows 10 Can Block Anyone from Spying on ... 2862. Microsoft Band 2 Tip: Keep Track of Your Daily Goals with Cortana 2863. Stronger China March industrial profits add to economic recovery ... 2864. Column: Local economy worth bragging about 2865. Microsoft elaborates on HoloLens pre-order process 2866. Cost only up 0.6% from 2014 2867. How Canada became the world's economic Rorschach test 2868. CAP payments critical to N Irish economy - Phil Hogan 2869. Microsoft just bought LinkedIn for a cool $26.2 billion 2870. Obama's SCOTUS Pick Falsely Blamed YouTube Video For ... 2871. Residents near New Mexico nuclear test site seek Obama visit 2872. Six months with the Surface Pro 4: Patches, lappability, and battery ... 2873. Another recession? Southern California's economy ready to fend off fears 2874. US reveals civilian death toll from airstrikes under Obama 2875. Obama to foreign visitors: We're monitoring your social media ... 2876. After Palestine talk, Harvard donor stops sponsoring events 2877. Microsoft's Cortana assistant now available on iOS and Android 2878. IBM, Microsoft announce new cloud data services, features 2879. Microsoft to support only Internet Explorer 11 starting January 2016 2880. Microsoft opens new state of the art development center in Vancouver 2881. Satya Nadella has reinvented Microsoft against the odds 2882. PEX Report: Index Up by 26 Percent 2883. Tourists taking plunge buoying NZ's economy 2884. French Jews push to ban Palestine film at Cannes 2885. Danger signs flashing for global economy, years after crisis 2886. Israel admits destroying Gaza crops on border 2887. First look: Microsoft's Windows 10 Anniversary Update preview 2888. GOP senators warn Obama to stay out of Brexit vote 2889. HIGH SCHOOL 2890. Dollar in doldrums as US economy underperforms 2891. It's Official: President Obama Had The Best 2015 Here Are The ... 2892. Bihar liquor ban spikes economy in UP towns 2893. Hong Kong Forecasts Slowing Economic Growth as Tourism Slumps 2894. As President Obama Visits Elkhart, Indiana, "The RV Capital," Recreation Vehicle Industry Impacts Entire U.S. Economy 2895. Microsoft Malaysia names chief marketing and operations officer 2896. Obama boasts of China's climate goals while Beijing chokes in smog 2897. Microsoft to end smartphone manufacturing 2898. New Indonesian hospital opens in Palestine 2899. Obama: Russia may finally come around on Assad's future 2900. PH economy may have grown slower in Q1 2901. Microsoft's Android home screen app gets performance boost, new ... 2902. Obama Outlines New Rules For Gun Sales In The U.S. 2903. Microsoft's excellent Windows Phone keyboard is now available for ... 2904. Does Guantanamo Bay cost as much as Obama says it does? 2905. Economy grows by 5.8% in the third quarter of 2015 2906. Buhari has destroyed Nigeria's economy APGA scribe 2907. Congress Seeks to Stop Obama Admin From Blocking New Iran ... 2908. WRAPUP 1-US manufacturing struggles; rising income boosts ... 2909. Obama breezes through Seattle for key Democratic fundraisers 2910. Peru's economy grew 2.95 pct in Sept on year -govt 2911. Russia's economy keeps getting smaller 2912. These two Democrats are fighting over who hates Obama and ... 2913. For Oil Drillers, Obama Methane Rule Is Worse Than Proposed 2914. Nigeria vs. Egypt on the economy; who is smarter? Seems Sisi is ... 2915. China: Unpaid migrant workers forced to sleep at work as economic crisis deepens 2916. Fuel Economy Rating Slips in 2015 2917. Taiwan again cuts key rate amid weak economy, global easing 2918. Microsoft’s ingenious new keyboard app is a helpful cure for the frustrated phone user 2919. Kazakhstan diversifies economy to survive oil and gas slump 2920. High School Student's Speech Introducing Prsident Obama, Signed ... 2921. German Economy to Gain Additional Momentum in 2016, IHS Says 2922. Republican debate sees Donald Trump and Ted Cruz battle over ... 2923. President Obama Grim as He Receives News of Brussels Terror ... 2924. The economic transformation of Turkey since 1980 2925. US economy grew slightly more in 4th quarter than earlier estimated 2926. East Palestine considers new fuel tank 2927. FOMC Uncertain About Economy 2928. Finland to Seek EU Aid to Cope With Microsoft, Nokia Layoffs 2929. Obama Criticizes the 'Free Riders' Among America's Allies 2930. Chinese beer: under pressure as economy slows amid competition 2931. Microsoft takes on Apple in Sydney by copying Apple's retail experience 2932. Johnny Manziel Finds New Way To Abuse A Microsoft Surface 2933. India to gradually move to gas-based economy: Dharmendra Pradhan 2934. Innovation in a Competitive Startup Economy 2935. Cyanogen OS 13.1 brings Microsoft features to OnePlus One 2936. Obama administration criticized over legal memo allowing faith ... 2937. Economy key to Brad Wall's quest for a third term 2938. Sunday, 3 Apr 2016 2939. Will & Jada Join Youth Initiative 2940. Obama OKs new sanctions against NKorea over nuclear program 2941. China Market Woes Reflect Pessimism Over Economy 2942. Ukraine needs new-look government, says outgoing economy minister 2943. Obama's Ridiculous History Lessons on Climate Change 2944. Obama plans to convene global migrant summit in 2016 2945. Microsoft's sale of feature phone biz erodes smartphone commitment 2946. What Home Depot Says About Housing, The Economy 2947. Woodford: Brexit won't hurt UK economy 2948. Microsoft crafts new policy in effort to ban 'terrorist content' 2949. Microsoft donates $1M to Museum of African American History 2950. Obama's Supreme Court Lawyer Helped Take Down DOMA And ... 2951. Chinese growth slowest since 2009 2952. Microsoft offers free SQL Server 2016 licenses to lure Oracle ... 2953. Microsoft presents Health Innovation Awards at HIMSS16 2954. Obama: Working to prevent attacks 2955. Markets may be tanking but the U.S. economy isn't 2956. The Guardian view on Europe and the economy: size isn't everything 2957. Microsoft CEO working on book about transformation, change 2958. Breast is best for babies and global economy: study 2959. Six times Obama blamed the message, not the policy 2960. Spanish economy shows resilience going into 2016 2961. Apple, Microsoft and Google race to introduce your kid to coding 2962. Significant premium hikes expected under Obama health law 2963. Facebook and Microsoft are building an undersea cable to move massive amounts of data much faster 2964. Local economy 'looking good,' buoyed by employment 2965. Economy off to ‘roaring start’ as Canada sees biggest gain since 2013 2966. Derek Jeter interviewed President Obama this month. It's been 78 ... 2967. Brazil confident economy to pull out of recession in 4th qtr 2968. Microsoft’s new app ditches passwords in favor of your smartphone 2969. Obama says Syria 'not a contest between me and Putin' 2970. Obama Pledges to Nominate a Successor to Justice Scalia 2971. Merkel, Abe differ on how to fix world economy 2972. Obama tells Havana embassy staff of 'historic opportunity' 2973. Relax. We are not heading for a global meltdown 2974. Free E-Book - Microsoft Intune Step by Step 2975. REPORT: Aging Alaska population becomes key part of state's ... 2976. Obama's $10 oil tax proposal would cost motorists 2977. Microsoft Surface Pro 5, Surface Book 2 Release Pushed Back In ... 2978. Obama Casts Doubt On Donald Trump's Chances In General Election 2979. EconoMeter panel: Are tightened trade policies bad for the economy? 2980. Democrats get Obama pep talk, face long odds 2981. Budget 2016: Modi-Jaitley give big rural push to economy, to give ... 2982. 'You Cannot Win Like That': Peters Rips 'Apologist-in-Chief' Obama's ... 2983. Acer To Bundle Microsoft Apps on Android Smartphones, Tablets 2984. Obama at Prayer Breakfast: I Draw Strength From ‘People of All Faiths Who Do Lord’s Work Each Day’ 2985. Vision of everyday life in Palestine too bleak for some 2986. UK Treasury chief warns of global threats to economy 2987. Microsoft's AppComparison wants Android users to switch to ... 2988. Wildfires will hurt economic growth: BoC 2989. Obama gives last State of the Union address 2990. Obama's Cuba visit could mean the end for the Castro brother Cold ... 2991. MIA: Latest Microsoft Health App Update Removes Custom Workout ... 2992. Letter From "Little Miss Flint" Inspires Obama To Visit 2993. Private consumption propels German economy to 1.7% growth in 2015 2994. Microsoft Office Sets Up Shop on Apple's New iPad Pro 2995. I tried Microsoft's $22,000 mega-tablet for conference rooms — and it was awesome 2996. Microsoft will bake adblocking right into its Edge browser [Update ... 2997. Calgary's sputtering economy will bounce back, but those most ... 2998. Chinese economy holds steady in May 2999. Rate Cut Not the Only Panacea for Economic Ills: Subramanian 3000. Microsoft quarterly profit down 25 percent to $3.8 bn 3001. Obama endorses Stratton no, not Dunkin for Illinois House 3002. Systemic Fragility in the Global Economy 3003. Ghost of Christmas past hangs over economy 3004. Obama expects U.S. to admit 10,000 Syrian refugees this year 3005. Poland's economy grows at fastest pace in four years in 2015 3006. Microsoft To Bring Back 'Xbox Daily' Live Show, Xbox FanFest At E3 ... 3007. Holiday Island Beats Korea's Industrial Heartland at Its Own Game 3008. Oil industry woes striking hard at Newfoundland economy: analyst 3009. Obama to make first campaign stop with Clinton next week 3010. Two ‘New Economy’ Stocks for the Long Run 3011. Botswana's economy in recession after Q3 contraction 3012. Obama recognizes 17 with Presidential Medal of Freedom 3013. Macklemore Helps Obama Raise Awareness About Opioid Abuse 3014. A Brexit Will Probably Be Good For US Economy 3015. Obama has just said he’ll be a ‘bull’ 3016. German economy had good start to second quarter 3017. Obama Seeks to Boost Financial Assistance for States' Medicaid ... 3018. Clinton: If the GOP doesn't confirm Obama's SCOTUS nominee, they ... 3019. Big Business Ransomware: A Lucrative Market in the Underground ... 3020. Microsoft's Cortana is 104-59 this season here are its NFL picks ... 3021. Israeli company reduces electricity supply to Palestine city 3022. Xbox One Elite Controller Will Evolve With Third-Party Attachments, Mapping Profiles 3023. OECD's CDEP Meeting Declassifies Materials for Upcoming ... 3024. Lumia 550 is just $99 on the Microsoft Store site until June 11 3025. Carter Worth And Mike Khouw's Microsoft Trade 3026. Microsoft is making a custom version of Windows 10 for the Chinese ... 3027. Windows 10 Mobile Preview build adds Messaging Everywhere service to the mix 3028. Why Obama remains silent on Palestine 3029. Republicans take to social media to bash Obama's gun control ... 3030. Netanyahu Slams French Ultimatum on Palestinian Statehood 3031. Microsoft Enterprise Cloud Division Leader Slated to Speak at System Center Universe (SCU) 3032. Is the global economy doomed? Brexit is just one sign of a wider ... 3033. BOE Carney Sees Brexit as Biggest Risk to UK Economy 3034. Report: Microsoft prepping cheaper Xbox One for 2016, VR-capable model for 2017 (updated) 3035. The Martin Luther King That America and Obama Ignore 3036. No silver bullet to stop terrorist use of internet: Microsoft 3037. Reevely: Delaying Ontario's pension plan a sign the economy isn't ... 3038. Black Friday and the Moral Goodness of the Market Economy 3039. President Obama is the White House's first social media ninja 3040. Indonesia leader calls on Muslim world to unite on Palestine 3041. Cruz on Trump: "We've Had Seven Years Of President Obama ... 3042. Obama Hiroshima trip to overshadow G7 economic talks 3043. Japan's Economy Minister to Step Down in Graft Scandal 3044. The real reason President Obama appointed Merrick Garland 3045. 5 trends to watch in state economy 3046. Barack Obama Drives A 1963 Corvette With Jerry Seinfeld! 3047. De Blasio thinks Obama's White House Correspondents' Dinner dig ... 3048. Mahindra Chief Sees Modi Sparking Potential in India Economy 3049. Fed's Bullard: Only one rate hike needed through 2018 3050. Microsoft Surface Book Slammed For High Price, Misleading Specs ... 3051. Morning Buzz: Apple Inc. (AAPL), Ericsson (ERIC), Fitbit (FIT ... 3052. US economy increased 1percent in fourth quarter 3053. Azerbaijani president meets Microsoft Corporate vice president ... 3054. Man attempts to steal one of President Obama's dogs 3055. Former Thai PM Thaksin warns on economy, says no deal with military 3056. Microsoft Azure continues open source love affair 3057. Microsoft, Facebook pick Virginia Beach to build transoceanic high ... 3058. Microsoft Introduces First Red Stripe Deals Of The Year 3059. Economy in review 2015 3060. Palestinian swimmer glides past obstacles to reach Rio Games 3061. Manitoba's economy among strongest in country: Conference Board ... 3062. Obama rebukes Trump protesters for violence at GOP hopeful's rallies 3063. Egypt's Economy: The Next Casualty Of The Metrojet Disaster 3064. Reports Point to Sluggish-Stable US Economy 3065. America's Junk-in-the-Trunk Economy 3066. Donald Trump Talks Down the Economy, No Outright Recession ... 3067. Debate crowd boos Rubio for pivoting to Obama attacks 3068. US consumer spending gauge rises strongly; producer prices up 3069. Could Microsoft's SQL Server 2016 Be Your Ticket to the Big TIme? 3070. First seed library sprouts in Palestine 3071. OBAMA LEGACY: Immigration stands as most glaring failure 3072. First Click: Microsoft could turn every PC into an Xbox 3073. Morgan Stanley CEO optimistic about China's economy 3074. The Scorpio and Neo are a betrayal of trust that might come back to ... 3075. Resources industry still powering the economy 3076. Hyper-V sets VM created date to 1601, in the reign of Good Queen Bess 3077. U.S. third-quarter GDP growth revised up to 2.1 percent 3078. Obama rolling back plans to drill 3079. Rand Paul: Obama's the one who's 'unqualified' to be president 3080. Indonesia Very Helpful to Us: Palestinian FM 3081. Devolved BBC would boost Scotland's economy by up to 60m a ... 3082. Microsoft wants to embed secondary screens into smartphone flip ... 3083. Microsoft's Chris Pratley, Mike Tholfsen and Chris Yu dish on ... 3084. Microsoft Dynamics Corporate VP Bob Stutz Steps Down 3085. Microsoft to keep German customers' cloud data in country 3086. Palestine has new embassy in Braslia 3087. Obama's Real Legacy on Immigration Enforcement 3088. Microsoft trumps Google in ANZ cloud email market: Gartner 3089. Microsoft Surface Book review: Is this shape-shifting laptop the ultimate all-in-one? 3090. Microsoft's Sharepoint app for iOS is here 3091. Thomson Reuters Integrates with Microsoft Dynamics AX 3092. Obama says will not relent in fight against Islamic state, urges ... 3093. Obama submits Gitmo plan 3094. Obama says gun control to be top issue of final year 3095. 'Speed Sisters' Documentary Spotlights the Middle East's First All ... 3096. Outlook is sunnier for Midwest's economy, but a stronger dollar casts ... 3097. Microsoft’s Surface sleep bug fix is finally here 3098. PNoy legacy: A robust manufacturing sector 3099. Flash Floods Overwhelm East Texas Town, 6 Deaths Reported 3100. Obama promotes trade deal in Asia 3101. Ghana's economy needs reengineering - Ayariga 3102. Obama: I'm worried about the Republican Party 3103. Under Obama: US Has Dropped from No. 6 in Economic Freedom to ... 3104. Former ministers Dan Ioan Popescu, Sebastian Vladescu and Gheorghe Pogea subjected to criminal prosecution 3105. U.S. average new-vehicle fuel economy drops below 25 mpg 3106. President Obama Announces More Key Administration Posts 3107. Obama to Push Supreme Court Nominee at University of Chicago 3108. Sri Lankan political parties express solidarity with Palestine 3109. Obama Names 12 Members to New Commission on Enhancing National Cybersecurity 3110. Obama: Orlando shooting isn't "an either/or debate" between anti ... 3111. Salvation Army Officials: Economy Is Improving, But Poverty ... 3112. Russian economy moves out of recession 3113. Obama and family open gifts, sing carols on Christmas 3114. Dear Obama, Assad Is the Problem 3115. President Obama Awards the Medal of Honor to Senior Chief Ed Byers 3116. Sweden refuses to link Palestinian aid to incitement 3117. Microsoft Flow For iOS Aims To Help Apps Play Nice 3118. Fact Check: The Economy Is Doing Pretty Well These Days 3119. Obama, ASEAN discuss South China Sea tensions, but no joint ... 3120. Surface Phone Is The Flagship Smartphone Microsoft Needs 3121. Possible turning point for economy 3122. Microsoft to acquire Xamarin and its mobile app development tools 3123. Obama seeks $1.8 billion to combat Zika virus 3124. RBS: China's Economy: Slowing Distorted & Debt-Addicted In For ... 3125. Microsoft selects Capitalise for latest accelerator 3126. Microsoft Shows Off Its Green Side on a New Website 3127. Microsoft Research's new project aims to improve Field-of-View of ... 3128. Sony comments on cross-network play for PS4 after Microsoft's ... 3129. Britain's exit from EU a significant challenge to world economy: G20 3130. Alberta NDP meddling in municipal politics while economy suffers ... 3131. Microsoft Launches Windows 10 Cumulative Updates KB3140768 ... 3132. Limited tickets for Obama's Elkhart speech to be distributed 3133. Global shares muted on lingering worries about economy 3134. Microsoft Backs Away From Bitcoin 3135. Roads, waterways, airspace closed for Obama visit Wednesday 3136. Climate Justice and Palestine: the New Intersectionality 3137. Singapore GDP growth drops to 2.1 percent in 2015 3138. Microsoft expands Cortana support, features in new Windows 10 ... 3139. Market Day At Lynchburg College Teaches Elementary Students ... 3140. Obama is still dangerous, warns American Jewish leader 3141. British MP's mission to Palestine 3142. Microsoft hunting new global channel chief 3143. China Economy Soft Landing or Bust? SSEC Stock Market Analysis 3144. Microsoft Surface Pro 4: Why this should be your next laptop? 3145. Microsoft to acquire LinkedIn for $26.2 billion 3146. World Evolution: Russian Company Develops Tech to Analyze ... 3147. Microsoft's new Treasure Tag Plus takes another surprise trip ... 3148. Why Obama should press Colombia on justice 3149. CPP changes won't harm small businesses, economy, BC premier ... 3150. Saudi Arabia reveals plan to transform its economy 3151. France's Economy By The Numbers 3152. George Soros wrong on Brexit and UK economy, says City economist 3153. Why this Palestinian poet still sparks controversy in Israel 3154. Obama promises Merkel to 'substantially' support refugee efforts ... 3155. Europe shares track Asia lower after gloomy BOJ economy view 3156. Obama shortens prison sentences for 61 drug offenders 3157. 29bm pg5 gallery 3158. How Obama's 'Brutal' First Job Inspired A New Youth Employment ... 3159. Obama vows better trade ties with new Argentine leader 3160. Will China Follow Japan Into Economic Stagnation? 3161. Obama admits the truth we all knew already: 'Beyonce runs the world' 3162. ISIS: Parsing Barack Obama's Definition of 'Contained' 3163. Snyder forms economy commission to foster long-term growth 3164. Vested interests jeopardize Ukraine's green economy development 3165. Skype group video calling arrives on iOS and Android today 3166. Legault proposes tax cuts to jump-start Quebec economy 3167. tentative upturn in the eurozone economy 3168. UK economy leans on consumers as manufacturing slips again 3169. Vella: Private sector and Juncker Plan cash can create low-carbon ... 3170. Microsoft teams with Rhode Island to bring computer science to ... 3171. Google, Microsoft, Yahoo, and others publish new email security ... 3172. Microsoft Surface Pro 5: 5 Things To Look For 3173. Microsoft Office 365 email outage affecting some US customers 3174. Microsoft Said to Meet With Possible Yahoo Bidders Seeking Funds 3175. Apple chief Tim Cook bets on economic reforms in India, says ... 3176. Tax reform: Treasury modelling presents taxing dilemma for ... 3177. President Obama says FBI investigating Orlando shooting as an act of terrorism 3178. [News Focus] Korean economy on downward spiral 3179. Microsoft rolls out OneDrive and Camera updates for some Windows ... 3180. Watch How The Presidency Aged Obama 3181. Obama Family Tours Old Havana 3182. Finland emerges as the 'new sick man of Europe' as euro's worst ... 3183. Why President Obama's Historic Visit to Hiroshima on Friday Is a Big ... 3184. Turkish Taekwondo in ‘Wild Card’ Bid to Fight for Palestine 3185. Bill O'Reilly thinks Obama is obsessed with Fox News 3186. 'Climate Change Posing Serious Threat to Economy' 3187. Obama Calls Both Democrats; Will Meet With Sanders 3188. Why the economy improved and the state jobless rate rose 3189. Microsoft Decides to Support U.S.-EU Data Privacy Shield 3190. Microsoft says the Xbox One won't be modular like a PC 3191. FACT SHEET: First Lady Michelle Obama Announces More than ... 3192. Preparing for the economy of the future 3193. Dr. Ashrawi conducts separate meetings with representatives 3194. Obama defends efforts to rein in Wall St 3195. Govt transformation plan strengthens economy — Chua 3196. No, Obama doesn't hold a "grudge" over Britain torturing his Kenyan ... 3197. Romanian economy to face indirect risks of Brexit after temporary ... 3198. Trade Union Recipe For A Strong Economy And Workers' Rights 3199. Microsoft disputes that it covered up China's relentless hacking of ... 3200. Constructing Sarawak piece by piece 3201. Advertising $40b boost to economy - report 3202. Another first - Mint achieves gold ALM competency recognition from ... 3203. Growing SA's economy remains key, says Gordhan 3204. Workers Without College Degrees Are Getting Crushed in This ... 3205. Government considers welfare, stimulus measures to boost economy 3206. Senate approves Obama's new Education Secretary nominee 3207. These 15 jobs at Microsoft will pay you more than $170000 a year 3208. President Obama Names Recipients of the Presidential Medal of ... 3209. Jeremy Corbyn described Israeli politicians as 'criminal' and ... 3210. John King is trying to repair the Obama administration's frayed ... 3211. OIC summit calls for concerted efforts to end Israeli occupation of ... 3212. Microsoft's HoloLens Big Play - Big Miss 3213. Clinton calls Trump's 'degrading language' on 2008 loss an insult to ... 3214. What to expect from Microsoft Build this week 3215. Why Microsoft is buying 10 million strands of DNA 3216. Amazon, Facebook, Google and Microsoft pledge support for Apple 3217. EU refuses to grant China market economy status 3218. Surface Book Review: Microsoft's first laptop is on to something 3219. Microsoft is bringing its SQL Database software to Linux 3220. Obama sings Ray Charles during White House tribute 3221. Palestine: 3 Palestinian teens shot dead in Israeli-occupied W Bank 3222. Kenya's economy may grow by 5.8% report 3223. Outlook improves for Midwest economy 3224. Lengthy coalition negotiations could harm economy 3225. Health insurance gains due to Obama's law, not economy 3226. Palestinian youth critically injured after shot by IOF during clashes 3227. APEC ministers endorse action plan on food security, 'blue economy' 3228. UN: Citing Israeli intransigence, UN Palestine rapporteur quits 3229. Deputy minister: Trans-Pacific free trade zone not to have major ... 3230. China ' s economy expected to stabilize in 2016 3231. Microsoft shifts gears with a new 2-in-1 PC designed by Porsche 3232. Obama refused to leave Air Force One after landing so that he could ... 3233. Obama Makes Holiday Appeal for Acceptance of Syrian Refugees 3234. Single Women: The Demographic Shift Shaping the Economy 3235. Former Obama adviser Goolsbee says U.S. economy will plod along 3236. Bill Maher Blasts ?Bloodthirsty? GOP, Launches Campaign to Get ... 3237. The Strength of the US Dollar and the Global Economy 3238. Microsoft's CEO explains why his company sued the U.S. government 3239. Attorney general: Obama urging people not to give in to fear 3240. Finance Officials Facing a Chronically Weak Global Economy 3241. Microsoft recommits to PC as place for new video games 3242. Microsoft's Nadella Makes New Security Push With Cyber War Room 3243. Judge urges Obama to commute harsh sentence he imposed 3244. What China's PMI Report Tells Us About the Economy 3245. #Airbnbwhileblack highlights racism in sharing economy 3246. Bank fees head north as economy goes south 3247. Report finds high-tech industry is outpacing state economy 3248. Obama sees hysteria and exaggeration in calls to halt refugee inflow 3249. Reporter tries to get Obama's 'Game of Thrones' sneak peek with a ... 3250. Obama's Troubling Dog Whistle on Encryption 3251. Microsoft fund will bring affordable Internet to world's poor 3252. Taiwan installs first woman president amid flagging economy 3253. Carney News Conference: BOE Policy, Economy After Brexit 3254. Spanish economy grows at fastest pace since financial crisis 3255. Letter: Glatt obligated to speak out about ND economy 3256. Megyn Kelly Confronts Tx. Lt. Governor Over Opposition to Obama's ... 3257. Jack Persekian steps down as director of new Palestinian Museum 3258. Here's why oil rout is hurting the global economy instead of helping 3259. News & Politics 3260. Microsoft opens cybersecurity centre in Gurgaon 3261. Obama Seeks $10-Per-Barrel Oil Tax to Fund Clean Transport 3262. Trump is a 'pragmatist' on economy, says Carl Icahn 3263. Expect Korean Economy to Decelerate in 2016: HSBC 3264. Time for EU to grant China market economy status: expert 3265. Obama urges Vietnam youth to tackle climate change 3266. Obama goes after Cruz for urging patrols of Muslim neighborhoods 3267. Family pulls sons from school after Obama's mandate lets girl use ... 3268. Presidents have virtually no impact on economy 3269. Barack Obama jokes Prince George's pyjamas greeting was 'slap in ... 3270. Xbox One Backward Compatibility: Microsoft update Xbox 360 ... 3271. South Africa's economy 'in crisis' 3272. Bettering bilateral relations: Sushma Swaraj announces January ... 3273. The surge in SUV sales is killing average fuel economy ratings 3274. U.S. economy seen growing 2.6 percent in first quarter: Atlanta Fed 3275. Is Microsoft Translator a real threat to Google Translate? 3276. Britain's MI6 provided crucial intel for Obama's drone war in Yemen 3277. Fort Collins economy slows in September 3278. Palestine — building a state of art without land 3279. Obama Faces War Over Court Pick, Whether Pragmatic or Partisan 3280. Obama denounces rise of 'vulgar and divisive' politics of Trump 3281. Key Telstra cloud partner recruits Microsoft veteran to drive ... 3282. How to revive the US economy 3283. Shock report shows there is FOUR TIMES more air rage when ... 3284. Obama Executive Action Targets Companies Seeking Lower Taxes ... 3285. Racists Flip Out About Malia Obama and Interracial Couple ... 3286. Cuba finds it hard to dampen afterglow of Obama visit 3287. Gov. McAuliffe Touts 'New Virginia Economy' 3288. Microsoft move to revoke trust in 20 root certificates could wreak ... 3289. Obama announces nominees for 3 Washington judical vacancies 3290. Billionaire activist urges Obama to focus State of the Union on ... 3291. Wall Street Week Ahead: Stocks could resume gains as US ... 3292. North Korea writes open letter to Obama in the voice of Abraham ... 3293. Sweden posts strong growth as Denmark dips 3294. Protests deal blow to Zimbabwe's economy 3295. Obama to Be a Traveling Man in Last Year in Office 3296. Decentralization Driving New Health Ecosystem And Economy 3297. Microsoft wants to finance Yahoo’s takeover to the tune of $1Bn 3298. Camden picture worsens after Obama visit 3299. Obama honors Chicago Blackhawks for Stanley Cup hat trick 3300. Microsoft drops another big batch of Windows patches 3301. Apple vs FBI: Here's why Google, Facebook, Microsoft and others ... 3302. US home sales climbed in January despite weaker economy 3303. PH economy expected to grow 7% in Q2 – economist 3304. Obama in Paris Says He Would Urge Young Jihadis to Choose a ... 3305. The weak economy? 3306. CREDIT SUISSE: Here's just how disastrous a Brexit could be for the ... 3307. Clinton marshals African-American surrogates against BDS to stop ... 3308. Faith, family and Obama buoy Onalaska woman with dementia 3309. Microsoft touts smaller, faster Xbox One game consoles at E3 3310. Obama: Hiroshima Visit To Emphasize Current US Ties With Japan 3311. Obama to kill off Arctic oil drilling 3312. Parody New York Times 'supplement' criticizing paper's coverage of ... 3313. Everything You Need to Know About Michelle Obama's Whirlwind ... 3314. Obama unloads on Trump: He doesn't know much about 'the world ... 3315. Microsoft Has More of Its Money Abroad Than Apple 3316. Here's the real economic impact refugees make on Europe's economy 3317. Water crisis leaves India's economy dry 3318. Slowing in China: Not Just Economy but Political Resolve 3319. Robert Half International Earnings: What They Say About the Economy 3320. Microsoft not planning a second wave release for the Windows 10 ... 3321. Dems: Trump wins us the Senate and Garland 3322. Microsoft launches OneNote Importer tool to attract Evernote users 3323. Rising rents bad for economy? 3324. Xbox One Backward Compatibility: Two new games go live following ... 3325. Economy and yen defuse "explosive" Chinese shopping in Japan 3326. Hiring boom boost to U.S. 3327. Battle over Obama immigration actions lands before Supreme Court 3328. Kingdom seeks political solution for Syria and Yemen 3329. Boris Johnson's Palestine visit axed due to 'misinformed' pro-Israel position 3330. WATCH: President Obama's powerful address on the ... 3331. Anthony Bourdain reveals '6 true things' about dinner with Barack ... 3332. Thailand economy grows 3.2% in Q1 3333. Obama Won't Say If He Voted For Clinton Or Sanders [VIDEO] 3334. Mr. Obama's 'Gun Violence' Problem 3335. Weather Forecast: Temperatures Up, Rains Expected 3336. Brexit, Istanbul added to agenda as Obama meets with neighbors 3337. US economy grows 1.4 percent in fourth quarter 3338. Microsoft And Ubisoft Team Up For Xbox One Division Bundle 3339. Obama enters his final year 3340. Why Obama is keeping quiet on Russia and Putin 3341. Microsoft's Word Flow a surprisingly solid iOS keyboard with one ... 3342. Obama has turned jihadist terror attack into personal gun war 3343. Double Boost For Economy: Inflation Cools, Factory Output Rebounds 3344. Obama Admin: Iran Nuke Deal Nonbinding 3345. Obama will skip Nancy Reagan's funeral to attend SXSW festival 3346. President Barack Obama, Drew Carey, Michael Symon congratulate ... 3347. Windows 10 November update available for download again says Microsoft 3348. RBI intensifies drive towards less-cash economy 3349. ECONOMIC WEEK AHEAD: GDP data to include spending 3350. Britain's 'Black Friday' is here. Now what? 3351. 9 things President Obama might have in store when he visits the UK 3352. Breaking: The White House Just Let Slip Obama's Massive New ... 3353. RI Economy: Brookings Institution says 'The moment is urgent' 3354. Microsoft's Android app emulator Project Astoria is having major ... 3355. Drillers See Dire Impact at Worst Time From Obama's Methane Plan 3356. Obama is proposing a $10-a-barrel oil tax, but GOP says it's 'dead ... 3357. Deal to curb methane on deck when Trudeau meets Obama in ... 3358. 'We can't forget the economy': Premier Brad Wall on climate change ... 3359. Russian President admits necessity to adjust 2016 budget due to ... 3360. US economy looks gloomier after poor jobs report 3361. Obama Reasserts Hope for TPP Passage This Year 3362. Malaysia Airlines may launch premium economy service 3363. Microsoft now has its own app store on Android 3364. Bitter Obama Stalker Sarah Palin Blames The President For ESPN ... 3365. Saudi Arabia is putting the squeeze on Lebanon's economy 3366. President Obama Is Tired of Taking Selfies 3367. South African economy staring into the junk abyss 3368. Microsoft Leads Effort To Disrupt Dorkbot Botnet 3369. China's economy growth slowest in 25 years 3370. How some big firms are learning to share as well as sell 3371. Carlos the Jackal says Swiss deal protected PLO - paper 3372. SAP partners with Microsoft to accelerate digital transformation in the cloud 3373. R.I. Economy: 3900 jobs lost in last two months 3374. Microsoft Surface Pro 5 packed with rechargeable stylus battery ... 3375. Obama's 'Red Line' on Russian Su-30 Sale to Iran Unlikely to Hold 3376. Obama vows to counter IS 'plotters' in Libya 3377. VIDEO: Israeli Military Uses Stun Grenades on Young Palestinian ... 3378. Mr. Obama, we are not 'free riders' 3379. Obama Relaxes Rules for Striking ISIS in Afghanistan 3380. Microsoft releases Cloud App Security to protect SaaS apps and data 3381. Microsoft Security Bulletins For January 2016 3382. Volvo Teams with Microsoft HoloLens for 'Mixed-Reality' Car-Buying 3383. Doyle McManus commentary: Obama needs friendly successor, or ... 3384. Obama Would Consider GOP Suggestions for Court, Reid Says 3385. At Microsoft keynote, Special Olympics chairman encourages ... 3386. Dewa honours sponsors of green economy report 3387. Shooting for nationals: Palestine robotics head to nationals 3388. Obama Honoring Streisand, Spielberg, Sondheim and More 3389. President Obama Opened Hannover Messe with a Pitch for TPP and ... 3390. Ben Rhodes and Obama's Foreign Policy Stories 3391. Economic diversity helps Australia navigate commodity slump 3392. In Obama's Backyard, Father of 5 US-born Kids Seeks Sanctuary in ... 3393. Microsoft Open Sources PDB 3394. US data paints rosy picture of the economy ANZ 3395. Top Asian News 7:32 a.m. GMT 3396. JPY: Impact on economy of strong yen Nomura 3397. Russian Economy Killers: Oil and Sanctions 3398. Consumers prop up US economy, but profits under pressure 3399. Can't Wait to Freelance in the Gig Economy? Read This First 3400. Microsoft CEO Nadella in India, meets Andhra CM Naidu 3401. Is Microsoft hiding Get Windows 10 ad generators in Internet Explorer security patches? 3402. Bradley Wiggins: 'Like Barack Obama, over eight years we've had a ... 3403. Top US Military Leaders Grilled On Obama's ISIS Messaging 3404. Baseball players who called Barack Obama a 'baboon' escape ... 3405. Google, Temasek See S.E. Asia Web Economy Reaching $200 Billion 3406. Obama gave a huge signal that the old War on Drugs is over 3407. Obama raises pay for federal employees 3408. Obama accepts blame with an ever-more-obstructionist GOP 3409. Is Christie gaining voter support for hard line against Obama on ISIS? 3410. Microsoft unveils ‘package flight’ test system for Windows Store 3411. Service side of economy cools off in May 3412. Obama recommends extending phone subsidy to broadband Internet 3413. Nigel Farage: Trump better for UK than Obama 3414. Obama to tell foe-to-friend story at Hillary Clinton event 3415. Obama to tackle ‘unfinished business’ despite US gun lobby 3416. Confessions of Barack Obama, confidence man 3417. Mohammed El-Erian just made a room of investors laugh really ... 3418. You Should Totally Download Microsoft's Weird iOS Keyboard 3419. 4 reasons why the US economy is so sensitive to Brexit-like shocks 3420. Israel to Demolish Family Home of Palestinian behind Jerusalem ... 3421. Obama allies use Trump to press GOP on Supreme Court nominee 3422. Tourism worth 5bn annually to economy, Michael Ring tells Dil 3423. Brexit vote adds to uncertainty over global economy, impact won't be seen soon 3424. Saudi Arabia Turns To Plan B As Low Oil Prices Rattle Economy 3425. Microsoft's Lumia 950 and 950 XL are finally going on sale ... 3426. Happy Medium: Tackling Premium Economy for Brand and Profit ... 3427. Obama Administration Advances Retirement Advisor 'Fiduciary' Rule 3428. Obama Nixed CIA Plan That Could Have Stopped ISIS: Officials 3429. Jan. 14: The economy's downward thing. Plus other letters to the editor 3430. Obama on Thanksgiving urges generosity to Syrian refugees 3431. Microsoft HoloLens apps and games to look out for 3432. Ashrawi: Palestine Mourns the Loss of Labor MP Jo Cox 3433. Obama to press Xi on North Korea: White House 3434. International Business Machines Corp Just Trounced Amazon.com ... 3435. Obama looks to boost economic, security ties in trip to Asia 3436. Obama, Clinton huddle over lunch 3437. Obama thinks he's cool; world leaders think he's arrogant and weak 3438. Taking The Temperature Of The US Economy. Is It Healthy? 3439. Microsoft app tries to lure you from Android to a Windows phone 3440. Montini: How Obama gets HIMSELF on the Supreme Court 3441. Obama's Orlando mission: Offer solace to grieving community 3442. Obama chides Congress over Zika funding bills 3443. President Obama Criticizes GOP Field, Particularly Donald Trump 3444. Microsoft launches Bot Framework to let developers build their own ... 3445. China Facing Pressure to Reassure on Economy at G-20 Meeting 3446. Obama Just Got Very Good News About His Environmental Policies ... 3447. Microsoft Ends Free Windows 10 Upgrades Soon So Plan Ahead 3448. Obama: America is not in decline 3449. Dividend Investing: 3 Reasons to Like Microsoft Corporation 3450. China preparing for new era of space economy 3451. Bin Laden's son: Unity in Syria to 'liberate Palestine' 3452. World NewsRussian economy shrinks by 4.1% annually in Q3 3453. Canada's economy rebounds, but is still 'stagnant' 3454. Reasons Why the Microsoft Band GPS Might Take Longer to Connect 3455. Have Obama's Supreme Court Picks Really Been Silent on Abortion? 3456. Senator takes aim at online employers in the 'gig economy' 3457. FLOTUS Flows: Michelle Obama Raps for College Campaign 3458. How Badly Is Australia's Economy Really Doing? 3459. Obama Confident Trans-Pacific Partnership Will Pass After Political ... 3460. Israel Just Announced Something Big About Donald Trump That'll ... 3461. Visa waiver programme "at risk" warns Obama's commerce secretary 3462. Microsoft and Samsung are partnering and it's a big win for ... 3463. Republicans call for inquiry into whether Obama paid 'ransom' to Iran 3464. The Mirage of a Return to Manufacturing Greatness 3465. Soros worries about global economy 3466. Obama attacks Trump over nuclear remarks 3467. Congressman to Obama on UN Israel action: 'Read this letter very ... 3468. Israeli Prime Minister The Greek Economy Will Recover 3469. Blacks must control economy: Zuma 3470. Microsoft is on a quest to move more of its cloud services to Azure 3471. Microsoft wants a 'Halo' for Xbox One 3472. Optional Windows update aims to protect Microsoft wireless mice ... 3473. Palestine in uproar following extrajudicial execution video 3474. Obama flying to Los Angeles for more Democratic fundraising 3475. Story of cities #49: the long road to Rawabi, Palestine's first planned city 3476. Microsoft @ E3: Halo Wars 2 beta, Gears Of War 4, Forza Horizon 3, Dead Rising 4 3477. Watch ABC's George Stephanopoulos Correct Marco Rubio On ... 3478. China GDP Slows to Weakest Since 2009 on Manufacturing Slide 3479. Obama to Release Long-Awaited Plan to Close Guantanamo Prison 3480. Obama to travel to Orlando on Thursday 3481. Premier Rachel Notley addresses Albertans on the economy 3482. Microsoft Warns of Sneaky New Macro Trick 3483. With The End Of Obama's Space Legacy What's Next For NASA ... 3484. Gaza Runners Denied Derry Marathon Visa Sparks Anger 3485. Microsoft CEO Satya Nadella to co-chair the World Economic Forum ... 3486. Eurozone's top banker: governments must act to help economy 3487. George Washington University Allows Flags to Fly From Dorm ... 3488. Plans for Microsoft’s Mid-Range Lumia 650 Announced 3489. BlackBerry (BBRY) Launches Secure Enterprise Solutions on ... 3490. Obama Orders Mother's Day to be Used to Celebrate Abortions 3491. Here are 2 completely different ways of thinking about the exact same chart 3492. Microsoft Build 2016 registration opens on January 19 for $2195 3493. Microsoft changes its mind -- older Lumias will not get Windows 10 ... 3494. Gov. Rick Snyder says he wants to meet with Obama in Flint ... 3495. Obama downplays ISIS threat, defends economic record in State of ... 3496. Conservative Speaker David Horowitz to Visit UCI During Anti-Zionism Week 3497. Obama Approval Rating Now On Par With Reagan After Hitting ... 3498. Aaron Rodgers says President Obama should use his championship ... 3499. Weather extremes are hitting the globalised economy | Bangkok ... 3500. Canada's One-Legged Stool Economy 3501. Republican blames Trump's rise on Obama's level-headedness 3502. Outlook: Slow going for Tucson economy 3503. A Ruling Against the Obama Administration on Immigration 3504. What "Misery" Can Tell Us About the Economy 3505. Bill Gates sees India as digital payments economy soon 3506. First, an Economic Peace 3507. Djibouti's economy to grow by 6.5 pct in 2016 - IMF 3508. Microsoft Bing correctly guessed almost every Oscar winner last ... 3509. Obama laments current politics; says media must do better 3510. Obama Meets Castro in Havana as a Step Forward in Diplomacy 3511. Obama ISIS Speech: President Warns Islamic State Leaders 'You're Next' 3512. Syrian Orthodox Christians threaten to leave Palestine after ... 3513. The need to diversify the economy 3514. Is Microsoft's cellular data service laying the groundwork for the ... 3515. Microsoft Surface Pro 4 coming to India on January 7 3516. Iraqis repel most significant Islamic State attack in 7 months - U.S. military 3517. Microsoft Bans Tech Support Ads in Bing, Google Outlaws Payday ... 3518. Negative Rates, Plunging Yields and a Fix for the Economy 3519. Analysis: Does Obama's claim to have rescued science hold up? 3520. Obama's Defeatist ISIS War Calculus 3521. President Barack Obama pays tribute to murdered MP Jo Cox on her ... 3522. Brazil turmoil dragging down economy, Itaú's Setubal says 3523. China's Economy Provides Brief Relief to Global Worries 3524. Downturn in Scottish economy 'intensifying' 3525. Microsoft faces more scrutiny in China 3526. Microsoft Cortana is helping the Portland Trail Blazers with sales 3527. Obama: Offshore Tax Havens are 'Gaming the System' 3528. Obama's Wrong: Climate Change Is Not Our Biggest Threat 3529. Unemployment: This Chart Is Flashing a Warning Sign for the US ... 3530. Chile's memories and Palestinian narratives can challenge UN ... 3531. Obama Wants $4B to Help Students Learn Computer Science 3532. Microsoft CEO Satya Nadella loves to use a quote from Wayne Dyer to describe the future of technology (MSFT) 3533. President Obama to meet with San Bernardino shooting victims ... 3534. The Obama CNN guns town hall: A shining moment of civility ... 3535. Partnership combines AvePoint solutions with Fritz & Macziol's ... 3536. Obama Grants $500 Million To Green Climate Fund Despite ... 3537. Watch Microsoft's Former CEO Dunk Off a Trampoline Like a Total ... 3538. Obama: My thoughts and prayers are with the families of the victims ... 3539. Manufacturing to remain key pillar of economy: MTI 3540. Obama Administration Misrepresented Iran Nuclear Deal for Public ... 3541. Jaitley pitches for lower interest rates to make economy more ... 3542. Obama: Stricter Refugee Process No Safer 3543. Obama: Climate pact an 'act of defiance' after Paris attacks 3544. Obama Admin Stonewalling Investigation Into 113 Terrorists Inside ... 3545. Police: Grandmother, 4 grandchildren killed in overnight flooding 3546. [Video] Microsoft CEO Satya Nadella On How He Works 3547. Ax|is Fashion upgrades with Microsoft Dynamics AX 3548. Syrian war redraws country's economic map 3549. Instant Analysis: Microsoft Corporation Cuts Cloud Pricing 3550. House Speaker Ryan: Americans are upset; they think economy is ... 3551. Clinton seeking to disqualify Trump on handling of economy 3552. Business et entreprises renforcent l'occupation isralienne en ... 3553. Ex-Microsoft exec Doug Burgum running for N. Dakota governor 3554. Is Erdogan ready to run Turkey's economy too? 3555. Coventry City 3556. New Obama rule goes after shady financial advisers 3557. Normal monsoon key to India's continuing recovery: Standard ... 3558. Ronda Rousey's UFC fight in Melbourne a $102m boost to Victorian ... 3559. Palestinian girl kidnapped after alleged stabbing, south Tel Aviv 3560. Grandmother, four grandchildren... 3561. Hybrids, Windows 10 May Finally Push Tablet Sales to Microsoft 3562. Vets: Don't Blame Obama for Track Palin's Behavior 3563. Microsoft Surface Pro 4 Review 3564. Mainland China authorities speed up Microsoft investigations over ... 3565. Judge rejects Obama's executive privilege claim over Fast and ... 3566. Saudi Economy: What Are the Chances for a Recession? 3567. Round Rock leaders hope new waterpark makes splash for economy 3568. These 5 Charts Prove That the Economy Does Better Under ... 3569. Microsoft says game over for Xbox 360 3570. Press Ignores Weak US and World Economy's Impact on Intel's Layoffs 3571. Obama says if GOP won't consider his Supreme Court pick, the entire judicial system is at risk 3572. Supreme Court split threatens Obama's immigration actions 3573. Microsoft Band updated with new social features, Tournament Mode ... 3574. The Eroding Economy 3575. Antil-Israel high school tweeter may need legal fees, supporter says 3576. Michael Adams: Economy tops list of local concerns 3577. Thief Punches Oldest Full-Time Park Ranger, Steals Coin Given to ... 3578. Obama Expands Media Strategy to Long-Form Conversations 3579. More than 200 East Texas homes damaged, destroyed in storms 3580. Google, Temasek see SEA web economy reaching US$200 billion 3581. Rubio: Obama Hoping CA Attack Doesn't Ruin Narrative on Terror ... 3582. Meet Ohal, The Brooklyn Artist Encouraging Musicians To Boycott ... 3583. Fed's Williams economy could handle two more rate hikes if ... 3584. Ramallah goes organic 3585. 'All Is Not Well' in Global Economy, Warns Investor Jeffrey Gundlach 3586. Obama to visit San Bernardino as shooting investigation continues 3587. The OIC and Palestine 3588. Microsoft details adding external elements to Windows 10 mapping ... 3589. Obama close to naming Supreme Court nominee 3590. Obama Moving To Super White Neighborhood 3591. Trump preparing plan to dismantle Obama's Wall Street reform law 3592. The Stock Market And The Economy: Future Expectations 3593. China's debt is growing faster than its economy 3594. Microsoft gets into the weed business 3595. Review: The Rise of the 'Matchmakers' of the Digital Economy 3596. Brexit has awakened dangerous forces in the world economy 3597. Obama-Trump feud gets personal 3598. President Obama: Libya aftermath 'worst mistake' of presidency 3599. A sound economy starts with healthy girls 3600. Obama's Favorite New Anti-Israel BDS Group Joins Him for Chanukah 3601. Key Dem endorsements that Hillary has yet to lock down 3602. Microsoft Corporation's (MSFT) Xbox Live Is Down for the Count on ... 3603. Obama U-turn on Atlantic drilling 3604. Pope Francis urges officials to avoid an economy of 'soulless ... 3605. Obama unveils efforts to get teens first jobs 3606. Chris Christie's Beef With Michelle Obama's Healthy Eating Initiative 3607. Palestine to hold trade expo in Pakistan this year 3608. Microsoft challenges Apple's iMac with new all-in-one PC? Roll out ... 3609. Apple is going a totally different direction than Microsoft and Google 3610. What the Xamarin Acquisition Means for Microsoft 3611. Pres. Obama Just Talked About the Motive of the San Bernardino ... 3612. Supreme Court to Weigh Challenge to Obama's Immigration Plan 3613. Sharing economy goes global 3614. Microsoft Adding Ways For Xbox Gamers To Group Up 3615. US economy shows 'modest' growth - Fed report 3616. Baton Rouge area economy expected to expand by up to 2.2% next ... 3617. Obama: 'Well Within My Legal Authority' On Guns 3618. Obama and Clinton have another secret lunch 3619. Obama Says Clinton-Sanders Not Repeat of Race He Won: Politico 3620. Okinawa governor decries no SOFA revision talk between Obama, Abe 3621. Was Obama sending a message when flashing the peace sign? 3622. Dear Microsoft: please bring web notes to Edge on Windows 10 ... 3623. How Obama's blackout on 'radical Islam' leads to dots going ... 3624. Obama signs Every Student Succeeds Act, marking the end of an era 3625. German minister says Brexit would be economic 'poison' 3626. Israel determined to take all Palestinian land: Activist 3627. Microsoft HoloLens release date, rumours, specs & pricing ... 3628. Ben Bernanke says he never expected interest rates to stay at zero for so long 3629. Microsoft explains where the Xbox falls into CEO Satya Nadella's ... 3630. Forth Road Bridge closure to cost Scottish economy 50m 3631. Anxiety treatment can help economy, study says 3632. Ageing Israel accords harm Palestinian economy: World Bank 3633. Barack Obama's Final Fight 3634. Intigua Joins Microsoft Enterprise Cloud Alliance, Integrates with Microsoft Server Management Products 3635. Former Secret Service Agent Gives Inside Look Into Obama's ... 3636. Janet Yellen Bursts Donald Trump's Bubble on US Economy 3637. Perspective: iPad Pro blew past Microsoft Surface as soon as Apple ... 3638. Dubai innovates for a vibrant, creative economy 3639. Microsoft Q2 16 Earnings Conference Call At 5:30 PM ET 3640. Washington state project preserves forest, allows Microsoft to help offset carbon footprint 3641. Opinion: US renewable energy isn't helping the economy or the ... 3642. The charts that show London's economic recovery could pave the ... 3643. Microsoft recalls 2.25 million power cords for Surface Pro series due to fire and shock hazards 3644. Microsoft disables Cortana for Android voice feature after user ... 3645. Microsoft expanding veterans program 3646. How China's richest man is weathering the slowdown 3647. At Hiroshima, Obama should make a pledge, not an apology 3648. Reynders, Al-Malki discuss situation in Palestine 3649. Microsoft explores the HoloLens interaction model 3650. How Microsoft is changing this year's Iowa caucuses 3651. Brexit crisis: Aviva suspends property trust as Mark Carney warns of ... 3652. Apartheid In Palestine. Hard Laws and Harder Experiences – Book Review 3653. Economy expands by 4.2 per cent in 1Q16 3654. Inside the Obama's luxurious $3500 a night holiday home boasting ... 3655. Microsoft's CMO on the art and science of immersive storytelling 3656. Road Closures to Know for Obama's Rutgers Speech 3657. Boxing in Oil and Gas: The Latest Part of the Obama Plan 3658. John Thompson: Microsoft Should Move Faster on Cloud Plan 3659. Does Obama Have This Right? 3660. Late Night With Jimmy Fallon (Lloyd Bishop/NBC) 3661. Microsoft Expanding IT Training Programs to 5 Army Posts 3662. Mississippi economy ekes out 0.7 percent growth in 2015 3663. Absolute Embeds Persistence Technology in Microsoft Surface 3 Devices 3664. Obama bans solitary for juveniles 3665. Main menu 3666. Obama Wants 'Radical' Who Fought for PORN in Public Libraries to ... 3667. Microsoft Expands Azure Active Directory Domain Services Preview 3668. From bad economy, Modi government turned India into a bright spot ... 3669. How Obama's Presidency Has Been A Victory For Working Parents 3670. Japan business mood dips as economy seen in recession -Reuters ... 3671. Microsoft presents new mid-range Lumia smartphone for consumers and business 3672. Obama Shows The Nation Why Donald Trump Is An Idiot With ... 3673. Klitschko vs Fury: Tyson Fury answers some tough questions ahead ... 3674. Obama eases restrictions on Cuba ahead of trip 3675. President Obama Again Turns to Lincoln in State of the Union 3676. Tested: Microsoft's Windows Defender antivirus is less awful than it ... 3677. A Legislature Where Palestinian Lawmakers Go to Hide 3678. ABC execs not letting Tim Allen's Obama insults go unchecked ... 3679. Election, economy hit vacation homebuyers 3680. Microsoft Inks Partnership With R3 Consortium to Bring Blockchain Tech to Financial Markets 3681. Global economy is ‘urgent priority’: G7 3682. China Reshapes Energy Sector, Shifts Towards Market Economy 3683. “There go the coal plants”: Philippines energy at a crossroad 3684. Ryan: Obama doesn't deserve credit for economy 3685. Windows 10: Woman get thousands of dollars from Microsoft after ... 3686. Obama, Ryan to have private lunch 3687. Microsoft says a Surface that survives Johnny Manziel could never have failed the Pats 3688. Why Obama's crack down on corporate mergers is the right ... 3689. President Obama will no longer visit universities that do not tackle ... 3690. Bad science? Former Microsoft exec says NASA data is riddled with ... 3691. An Open Letter to President Obama about Jos Mart 3692. Who is Soraya Bouazzaoui? The no-nonsense student who put David Cameron's 'waffling' to shame 3693. Cruz on DAY ONE: 'Rescind every single illegal, unconstitutional ... 3694. Obama to release $4 trillion-plus budget for 2017 3695. Obama's Justice Department Sues Ferguson City When Council ... 3696. Obama Poll Watch -- March, 2016 3697. Nobel Peace Prize winner urges Obama to not visit Argentina on ... 3698. How Brexit impacts the U.S. economy 3699. Is Surface the ace up Microsoft's mobile sleeve? 3700. UK economy may be heading for worst quarter since 2012 3701. Key National Security Issues to Look for in Obama's State of the Union 3702. Obama asking for $1.8B in emergency funding to fight Zika 3703. Why your company will buy a Microsoft Surface all-in-one soon 3704. Obama Says Madmen Must Not Get Their Hands on Nuclear Bomb ... 3705. Anthony Bourdain Picks Up $6 Tab After Lunch With President Obama 3706. As Obama Pushes Climate Deal, Republicans Move to Block ... 3707. IMF: Russia Economy Still Adjusting to Oil, Sanctions Shocks 3708. Microsoft is doubling down on car tech as Google and Apple creep up 3709. 11 Facts You May Not Have Known About Microsoft 3710. Retail Earnings Say Less and Less About US Economy 3711. Microsoft upgrades headset for blind people 3712. Israel freezes 83000 Ramadan permits for Palestinians after ... 3713. Turkmen leader sacks economy officials as growth slows 3714. Forming Strategic Alliance with Patton, UC Point Delivers Microsoft ... 3715. Philippine economy grew 6 percent in 3Q as services expanded 3716. Obama congratulates Clinton, applauds Sanders 3717. Texas' war on reality: State's next likely school board member ... 3718. Trump's prediction of 'massive recession' puzzles economists 3719. Russian expert: Turkey depends on Russia economically and will ... 3720. The Aspiring Novelist Who Became Obama's Foreign-Policy Guru 3721. FAQ: Microsoft mandates new Windows support rules 3722. Asia trade deal puts honey exporter in sweet spot for Obama speech 3723. Microsoft CEO to visit T-Hub in Hyderabad later this month 3724. Wednesday, 30 Mar 2016 3725. Ghana’s economy has made a turnaround – Terkper 3726. Thornberry shared stage with Hamas ‘envoy’ 3727. Stock market would depend on the strength of the economy in the ... 3728. Girls Soccer: Lady Lions fall to Silsbee in Palestine Tournament 3729. Many Albertans think economy will get worse before it gets better ... 3730. Countries Should Play By Same Rules In South China Sea: Barack ... 3731. Obama Pledges Federal Support to 'Terrorized' Kalamazoo 3732. Brexit debate: 'Our economy would collapse without immigrant ... 3733. Microsoft Could Be Working On Surface-Branded Modular PC For ... 3734. Canadian economy grows 0.8% in fourth quarter of 2015: Statistics Canada 3735. Eygpt, a new emerging economy 3736. If these Surface Phone rumours are true Microsoft might as well quit ... 3737. Granting Medal of Valor, Obama Says US Must Listen to Police 3738. Obama warns Dems against 'Tea Party mentality' 3739. Obama's "Task Force on New Americans" Launches Citizenship ... 3740. Huawei MateBook takes aim at iPad Pro and Microsoft Surface 3741. Poloz delivers cautiously optimistic update on Canadian economy 3742. EU referendum: Britain should not be 'bullied' by Obama on Brexit ... 3743. Obama has long focused on his legacy. Now he will step directly into the debate over it. 3744. India weighs fiscal stimulus in new budget despite fast economic ... 3745. Seattle's Next Big "Sharing Economy" Challenge Is Regulating Airbnb 3746. S&P 500 flat; Yellen sees no reason to reverse hike plan 3747. Japan finance minister Aso: What economy needs is more demand ... 3748. Fallout from milk price cuts to hit local economy hard 3749. Obama rolls the dice with killing of Taliban chief 3750. Morning Star :: Speak Out, just not for the Palestinians | The Peoples Daily 3751. Microsoft's aggressive free upgrade campaign for Windows 10 hasn't led to a blowout success (MSFT) 3752. Obama's 'Streisand Effect' Presidency 3753. Thousands take to streets in demonstration for Palestine 3754. Obama Continues to Ignore Pleas to Free Puerto Rican Political ... 3755. Jerry Lewis goes public on Trump, Obama 3756. iPad Pro, Microsoft's Surface Pro Competitor, Will Officially Launch ... 3757. How Microsoft deployed Windows 10 inside the company 3758. Why You Might Go Bankrupt If Your Next-Door Neighbor Wins the ... 3759. Microsoft revs up local cloud campaign 3760. Eurozone Economy Slows as Exports Weaken 3761. AA to Sell 'Premium-Economy' Seats on International Flights 3762. LETTERS: POF boosts overall economy 3763. Microsoft Co. (MSFT) Rating Reiterated by Pacific Crest 3764. Microsoft Co. (MSFT) Earns AAA Credit Rating from Morningstar 3765. Cruz: Obama Needs to Stop Lecturing Us on Islamophobia in Midst ... 3766. BRIEF-Microsoft has made the decision to stop manufacturing new ... 3767. Japan factory output unexpectedly rises, economy still in low gear 3768. Osborne Set To Repeat EU Economy Argument 3769. What Will Fed Say About the US Economy? 3770. Microsoft shows how you tell stories with HoloLens 3771. Microsoft, Lowe's to help remodelers through virtual reality 3772. New Nigerian Officials Signal Shift In Economic Policy 3773. President Obama just commuted the sentences of 58 people. Here ... 3774. Six triggers that changed the market while you were sleeping 3775. Breaking: Obama endorses Hillary after pushing Bernie out An error ... 3776. China's debt is growing faster than its economy and analysts said ... 3777. Worst Economy In 5000 Years? 3778. Larry Klayman Names Obama 2015 'Muslim Of The Year' 3779. Russia's Economy Slows Amid Investment Woes (Op-Ed) 3780. Broncos use Microsoft Surface to celebrate Super Bowl win with ... 3781. El Niño Seen Warming U.S. Economy in Early 2016, Halting Slumps 3782. Obama warns against overreaction to Islamic State attacks 3783. What Fed chair Janet Yellen sees on her job market "dashboard" 3784. Xbox One S release date, specs and price confirmed for Microsoft's ... 3785. Minecraft sales top 100 million 3786. Report: Michigan economy growing, but issues ahead 3787. AP PHOTOS: Major moments in the business world in 2015 3788. Senate rips up Obama's nomination wish list 3789. Can Bernie Sanders Revive the US Economy? 3790. What Saraki promised to do with President Buhari over Nigeria's ... 3791. Latest jobs report suggests the economy is slowing down 3792. Veritas has joined the Microsoft Enterprise Cloud Alliance 3793. New Islamic bank to set up shop in West Bank, Gaza 3794. OIC appoints first representative in Palestine 3795. Canada Consumer Confidence Hits One-Year High on Economy ... 3796. Obama: 'It's possible' San Bernardino shooting was terrorism 3797. Canadian economy edges up in April, no thanks to lack of playoff hockey 3798. Glimpse of world economy in 2016 3799. Has Barack Obama had a 'no boots on the ground' message for Syria? 3800. Microsoft Open Sources Distributed Machine Learning Toolkit For ... 3801. North Korea Gets Chance To Be Asia's Next Economic Dragon 3802. Can the BOJ Sake Up the Japanese Economy? 3803. Microsoft enters the artificial intelligence race 3804. Lisk Raises Over 1.9 Million USD Establishes Partnerships With ... 3805. Obama: I'm confident a Democrat will succeed me 3806. Clinton teases Trump over Obama's birthplace 3807. Obama Administration's Civilian Drone Casualty Count Far Lower ... 3808. Microsoft Sucker Punches Apple With Love 3809. Obama's Internet Endangerment 3810. INTERVIEW-ADB urges Bangladesh to develop capital market to ... 3811. Obama thanks Cape Breton for offering to accept Trump refugees 3812. Investors warned about Sinn Fein's economic policies if they take ... 3813. Obama Administration to Issue Decree on Transgender Access to ... 3814. Leaving EU would boost UK economy by 4 percent - economists 3815. News & Politics 3816. Obama urged to meet survivors of terror attacks on Argentina Jewish ... 3817. Microsoft Earnings: What to Watch 3818. Merkel, Abe differ on how to fix world economy 3819. Down but not out, US economy still a beacon of growth 3820. NC Conservatives: Obama Administration Using Children as 'Pawns ... 3821. Why the Zika Virus Doesn't Have to Destroy Brazil's Economy 3822. Obama's Hiroshima Visit Sends the Wrong Message to China 3823. Obama celebrates presidency as it unravels 3824. Tony Robbins Talks Trump, the Economy and the New Netflix Doc ... 3825. Obama Aims for More Targeted Cadillac Tax in Budget Proposal 3826. A chief scientist at Microsoft says we're less than five years away from computers understanding us perfectly 3827. Download Central: Microsoft Sway 3828. Obama Says Trump Tapping Anti-Immigrant Fear That Drove Brexit 3829. Israel/Palestine: The Marxist Left, the National Conflict and the ... 3830. Kweku Kwarteng 'pinches' Mahama over economy 3831. Turkish growth delights with strong third quarter growth 3832. EU exit could add two years to austerity, IFS says 3833. Obama's Crazy Visa Policy Makes Trump Look Like a Prophet 3834. Obama might want to be a venture capitalist after leaving office 3835. YOUR MONEY-'Sharing economy' can complicate U.S. tax filings 3836. Republicans Debate Over Whether President Obama Is Incompetent ... 3837. Economy and immigration dominate EU referendum debate 3838. Huge debts dent Jubilee regime's score on economy 3839. Microsoft to buy LinkedIn for $26B in cash, makes big move into enterprise social media 3840. Not the only 'proud Palestinian' in the familyGigi Hadid's father ... 3841. Microsoft to turn Dynamics ERP into a service, starting with ... 3842. Bank of Canada's Poloz delivers cautiously optimistic update on Canadian economy 3843. Bank of England warns Brexit could do serious harm to UK economy 3844. ANOTHER reason to LEAVE: EU economy to DECAY this year as ... 3845. Concern over Chinese economy sends stocks reeling 3846. Microsoft Bing correctly guessed almost every Oscar winner last year — but it didn't do as well this year 3847. In India, corporate transparency comes with puzzling questions 3848. Obama Empties Innovative Classrooms 3849. Obama Remembers Scalia As 'Consequential,' Vows To Appoint Replacement 3850. Obama's State of the Union: What have presidents done in the eighth year? (+video) 3851. Our Toll Gate Economy and Nigerians 3852. Apple iPads Losing Market Share To Microsoft Surface Series ... 3853. Obama's Justice Department shields Cheryl Mills from FBI's questions 3854. Obama: Deniers of economic gains aren't telling the truth 3855. Google Seen Slashing Cloud Pricing Vs. Amazon, Microsoft 3856. Obama talks to South Korea's Park about North Korean nuclear test - White House 3857. Talent will be key differentiator in global economy 3858. Obama - Muhammad Ali 'fought for us' 3859. British economy ends year at steady rate amid global woes 3860. Grim weather a metaphor for the world's economy 3861. Communicator-in-chief: Where Obama's rhetoric illuminated a ... 3862. Microsoft is considering a smaller, cheaper Xbox to compete with the Apple TV 3863. Brexit would be a 'terrible deal' for UK economy, warns Jamie Dimon 3864. Conservatives Have Never Understood What Obama Thinks About ... 3865. China economy faces greater difficulties, downward pressure increasing: Li 3866. Will Microsoft Corporation Raise Its Dividend in 2016? 3867. Obama to tackle dashed hopes for bipartisan change 3868. Quick takes: Singapore economy "ran out of steam" in Q1 3869. The app economy? There's an Apple original TV series for that 3870. Trade Experts: Trans-Pacific Partnership 'Vehicle to Pass Obama's ... 3871. Reserve Bank under pressure to cut interest rates, just as economy ... 3872. Waze app leads IDF soldiers into Palestine, conflict erupts 3873. How to escape that forced Windows 10 upgrade you mistakenly agreed to 3874. Downturn in Stocks May Hit Real Economy, Moody's Warns 3875. German economy minister calls for e-car incentives 3876. Microsoft pulls AI after robot's racist rant 3877. Microsoft slips Windows 10 upgrade banner inside security update ... 3878. Stronger economy lets ECB kick back 3879. China's economy will "absolutely not" experience hard landing - state planner 3880. Sanders and Clinton vie to be Obama's heir for black South ... 3881. Microsoft Surface Pro 4, Book Beating Apple iPad Pro In Detachable ... 3882. How to delete duplicates in Microsoft Excel 3883. Hacking out Palestine's tech talent at Angelhack 3884. Value of Australia's natural wealth doubles over 10 years to $6 ... 3885. Governors to Buhari: We must diversify economy 3886. U.S. economy is on solid ground — for now 3887. Palestinian child survivor of Duma torching meets Real Madrid star ... 3888. Ajay Shah: Preventing a zombie economy 3889. February sees new-car average fuel economy holding steady 3890. China state planner sees 2015 GDP growth around 7 pct, okays more big projects 3891. Obama to give address Sunday about California shootings 3892. Hillary Clinton smartly distances herself from Obama 3893. Anders Aslund: 10 reasons why I'm optimistic about Ukraine's ... 3894. Obama's Clemency Bucket List 3895. Watch: 'Obama has been a tacit supporter of BDS' 3896. Amazon, Facebook, Google and Microsoft pledge support for Apple 3897. How can Sony PlayStation beat Microsoft Xbox at E3 2016? (and ... 3898. Microsoft's Project Madeira turns Outlook into a small-business productivity hub 3899. Silverton looks to diversify economy with new railroad 3900. Sweden posts strong growth as Denmark dips 3901. Microsoft and Alphabet shed combined $42 billion 3902. Obama lauds racial progress, but warns of more work to be done 3903. U.S. Economy Could Be Poised For Stronger Growth 3904. Michelle Obama Wears Narciso Rodriguez to National Medal for ... 3905. Obama in Atlantic interview talks Netanyahu, Syria and Iran strike 3906. Microsoft CEO Satya Nadella: Smart agents like Cortana will replace ... 3907. It's the economy, stupid! Peshmergas loosing morale 3908. Microsoft has trapped its biggest partners between a rock and a hard place 3909. Obama to Trash Reagan's Restrictions on Domestic Spying 3910. Capital spending still meager, damping economy 3911. 5 things we learned from Janet Yellen about Fed rate hikes and the ... 3912. Irish Economy Set to Top Growth Rankings for Second Year 3913. PCRF Launches Ramadan Campaign to Support Palestinian-Syrian Refugees in Gaza 3914. Rick Scott says we 'completely' turned around Florida's economy 3915. Economy grows, but so does deficit, thanks to tax breaks, budget office says 3916. Lagarde urges Asia to take bigger role in guiding global economy 3917. Obama's offshore-drilling mistake 3918. Why Microsoft Corporation Sold Its Feature Phone Business 3919. Palestinian refugees in Beirut protest UNRWA aid cuts 3920. Obama meets Erdogan amid talk of 'snub' 3921. World economy is an ‘urgent priority’: G7 leaders 3922. Farage Hits Out At Obama Ahead Of UK Visit 3923. EU Students Contribute 3.7bn to the UK Economy 3924. New lanes of Hwy 79 in Palestine to open on Wednesday 3925. Palestine: Village punished for deadly attack by three residents 3926. Obama Engages Americans on Vision for America 3927. German Economy Largely Unfazed by Market Volatility, Markit Says 3928. Obama Thanksgiving message likens refugees to pilgrims 3929. A whiff of panic in the Kremlin as economy sinks further 3930. WWF initiates green economy in Kalimantan conservation area 3931. Palestine: 1/3 of Palestinian village left homeless by demolitions in ... 3932. Obama Comments on Donald Trump GOP Candidacy 3933. German economy notches up strongest growth in 2 years 3934. Examining the pros and cons of Microsoft Power BI tools 3935. US investors optimistic about Indian economy: UK Sinha 3936. Alibaba's magic still casting money spells 3937. Microsoft slashes the price of Xbox One bundles, and games 3938. 'Indian and German economies are lighthouses in the currently dull ... 3939. Kenya's Economy to Feel the Effects of Global Financial Tightening 3940. White House: Obama Will Not Attend Justice Scalia's Funeral 3941. Fed flags up global risks to US economy 3942. Palestine-Egypt to Set Mediterranean Sea Border 3943. Obama holds first summit in US with Southeast Asian leaders 3944. Buoyant SNP faces down the economic apocalypse 3945. Krauthammer's Take: Under Obama, ISIS Has Create Largest Terror ... 3946. Mendix to Accelerate Enterprise Digital Transformation by Collaborating with Microsoft 3947. Devops platform Cloud Foundry floats on Microsoft's Azure 3948. Positive outlook for NZ economy - NZIER 3949. What are negative interest rates and how do they work? 3950. Circular economy leak: New rules on recyclable TV screens 3951. Microsoft's 'CaptionBot' Will Provide A Caption For Your Selfie And ... 3952. Prospera Financial Services Increases Stake in Microsoft Co. (MSFT) 3953. UK Economy Set To Grow Despite Global Economy Going Through Turmoil 3954. Obama Comparisons Trail Young Senators Seeking GOP Nod 3955. A Sting to Legitimise the Theft of Palestinian Land 3956. China labour rules harm economy — Finance Minister 3957. Bank of England says Brexit would pose risks to global economy 3958. Global recovery ‘in danger of stalling’ 3959. Seven Classic Propaganda Techniques President Obama Used to ... 3960. Economic Growth Makes Workers More Valuable, Not Mandates 3961. Obama to propose 1.6 percent pay raise for federal, military personnel 3962. Obama: Clinton Didn't "Intentionally" Put America In Jeopardy; I ... 3963. Microsoft Pyjion boosts Python speed 3964. We are optimistic that Chinese economy will begin to stabilise: Ryan ... 3965. Israel takes aim at Hamas-run TV channel for 'incitement' 3966. HS softball: New Palestine routs Bishop Chatard 3967. Can a Palestinian activist write a book that is devoid of politics? Two ... 3968. Second-Generation Microsoft Band Discounted in the UK 3969. President Obama: 'No specific and credible' threat to the US 3970. Rubio: Obama is 'completely overwhelmed' 3971. Layoff's continue within Microsoft's mobile division, as "dozens" lose ... 3972. Sizing Up the Obama Economy 3973. Doc Mgt Roll-Up: Microsoft's ECM Partnership 3974. Scottish newspapers worth 1bn to the economy 3975. Why Microsoft co-founder Paul Allen is building the world's largest ... 3976. Obama: Trump, Cruz proposals harm U.S. foreign policy 3977. Obama: ISIS is losing ground 3978. Experts forecast how economy would fair in 2016 3979. Obama dismisses Putin, but Czar is getting better of us again and ... 3980. Microsoft to delay its Windows 10 upgrade AGAIN 3981. US Economy Grew at 2 Percent Annual Rate in Third Quarter 3982. Palm Springs road closures announced for Obama visit 3983. Israel Harvesting Slain Palestinians' Organs: Palestine's UN envoy 3984. The Civil War comes to East Palestine 3985. Saturday, 30 Jan 2016 3986. Brexit vote could impact Nashville tourism, broader economy 3987. AVCP lays off 30 employees, cites economy 3988. Salesforce.com poaches Microsoft's top CRM exec as relationship ... 3989. Microsoft becomes first tech giant to invest in legal weed industry 3990. Home > Video > Russian Economy: What's the Endgame for ... 3991. Microsoft's new tools let businesses integrate Skype into their own ... 3992. Microsoft partners with ISTE to provide new school planning and ... 3993. Tangible achievements of the Russell Tribunal on Palestine 3994. Tech giants spot opportunity in forecasting China's smog 3995. Utah has best state economy with high marks for investment in ... 3996. Obama to nominate Scalia successor 'in due time' 3997. Windows 10: Microsoft gets more aggressive with automatic OS ... 3998. Top Mobile Apps of 2015 Released: Microsoft Not Present 3999. How Buhari can rescue Nigeria's economy from collapse 4000. Iran puts brakes on implementation of contracts with Russia by ... 4001. Microsoft Translator adds new customization features for use in ... 4002. South Korea's GDP growth hits 5-year high in Q3 4003. Economy beyond summit 4004. Obama tells Putin to stop hitting opposition forces in Syria 4005. How Microsoft Just Changed 'Minecraft' 4006. Acuity Brands to Demonstrate Indoor Positioning at NRF 2016 with ... 4007. Giuliani: Trump is right, Obama is showing weakness 4008. Obama shortens prison sentences for 61 drug offenders 4009. A Push To Make Obama's Birthday A State Holiday 4010. Microsoft Is Officially Killing Off the Xbox 360 4011. Small Businesses Cautious, More Pessimistic on Economy 4012. The Great Ponzi Scheme of the Global Economy 4013. Microsoft Building Chat Bot Network Powered By Cortana, Bing 4014. Preventable Colon Cancer Deaths Cost The Economy $6.4 Billion 4015. Economy May Expand by 7.8% in 2017-18: UN Report 4016. Microsoft Debunks 'Xbox Next' Rumor 4017. NZ economy in for a bumpy ride following the Brexit vote 4018. Saudi Summit Tops Obama's Trip Agenda 4019. Grim economic worries arose before Brexit 4020. Palestine girls go 2-1 at Edgewood tournament 4021. Microsoft now powers its Chicago data center with 100 percent wind ... 4022. Top Fed official shows confidence in U.S. economy 4023. India and the ongoing economic turmoil 4024. Obama presents $450 mn plan to fund Colombia peace 4025. Microsoft sets Feb 2017 date to kill last SHA-1 zombies 4026. Microsoft Confirms SwiftKey Acquisition (For $250M In Cash) 4027. Brexit: 'Special Relationship' Won't Change, Obama Says 4028. What to Expect from Microsoft’s 2Q16 Results 4029. Back education to drive our new economy 4030. Croatia goes to the polls facing migrant wave, economic woes 4031. Palestine Wildcats take state 4032. Obama Congratulates New Georgian PM 4033. Microsoft Cofounder Paul Allen Ups The Ante In Billionaire Space ... 4034. 31 romantic photos of Michelle and Barack Obama 4035. IMF chief Christine Lagarde forecasts tepid growth for world economy 4036. Big spending conference goers contribute $472 million to economy 4037. Ukraine's Economy Minister Resigns 4038. Weak US retail sales highlight risks to economic outlook 4039. HK economy more resilient in Q3 but outlook gloomy 4040. Microsoft CEO Satya Nadella keeps India tour a low-key affair, to ... 4041. Interest rates could stay on hold for rest of year as economy slows ... 4042. US economy grew at a better pace than expected 4043. Blowing up Death Stars bad for economy, Washington U Prof says 4044. Hutsonville-Palestine baseball team drops varsity, JV games at ... 4045. Microsoft Blocks Sneaky Software Installs With Enterprise Security ... 4046. Zero Waste Scotland to get £70m for Circular Economy plans 4047. Japan economy shrinks 0.8 pct in Q3, back in recession 4048. This Week in Palestine Week 01 2016 4049. Clashes Break out between Israeli Soldiers, Palestinian Youth in ... 4050. America is great right now: Obama taunts Trump 4051. Microsoft wants everyone to know its tablets didn't break during an ... 4052. Michelle Obama's 24 minute speech in Qatar cost $700000 4053. Research Unit: Israel Detained 5934 Children since 2010 4054. Join Forces to Lift Economy, Says Zuma 4055. Fin24.com | SA economy could swing back to recovery next year - IMF 4056. Senate confirms Obama's pick for USAID administrator 4057. Trudeau, Tory, Morneau in Toronto for economic conference on ... 4058. Adallom is now Microsoft Cloud App Security 4059. State Dept. Withholding 18 Emails Between Hillary, Obama [VIDEO] 4060. President Obama won't attend Nancy Reagan's funeral 4061. Could Obama's SCOTUS Pick Come From Bain Capital? 4062. Countering Trump, Obama Says He's Made America Better 4063. Obama to Nominate Judge Merrick Garland to Supreme Court 4064. John McDonnell: Labour has fight on its hands to win back ... 4065. No global meltdown, EU growth outlook unchanged: EU economic ... 4066. The Sharing Economy Isn't a Niche, It's the Future of Market Capitalism 4067. Patent that cost Microsoft millions gets invalidated 4068. Obama seeks funds boost to fight IS 4069. Microsoft Launches Pakistan's first of its Kind Entrepreneurship ... 4070. Microsoft sells patents to Xiaomi, builds 'long-term partnership' 4071. COSCO ' s acquisition of Greek Piraeus Port to further contribute to ... 4072. This political cartoon highlights the impossible situation Obama ... 4073. 7 things to know today, plus Orlando a top 10 economy in the U.S. 4074. Obama to meet with Colombia's president at White House 4075. Microsoft Again Offers Unlimited OneDrive Storage to Some Users 4076. How Microsoft Lawsuit Echoes Apple Fight 4077. Microsoft blocking some Windows patches from manual download 4078. Michelle Obama makes surprise visit to Pak embassy in US 4079. 5 reasons the Surface Pro 4 is fit for the enterprise 4080. Bihar economy posts 10.5% growth rate in last 10 years 4081. Brexit Was Inevitable And Economic Impacts Could Look Like The ... 4082. Newgen Software partners with Microsoft to introduce a new app 4083. Eurozone economic lift-off still appears a long way off 4084. 'Austrian economy again losing momentum' 4085. Microsoft has announced the date it will kill support for its mobile ... 4086. Next admin inherits strong economyPurisima 4087. Microsoft Calls for Health Care 'Security Intervention' 4088. Nigeria: Finance Minister Replies Ezekwesili, Rejects 'Opaque ... 4089. Microsoft BUILD: much to chat about 4090. ‘Obama wanted to raid OBL hideout before May 2’ - Newspaper - DAWN.COM 4091. Michael Oren Ties US Shortcomings in Peace Process to Obama's ... 4092. Is Obama gearing up for a TV career post-presidency? 4093. Obama: Trump's comments 'rattle' world leaders 4094. Obama shakes hands with Raul Castro in historic meeting 4095. PepsiCo CEO Says She's Never Seen Global Economy This Bumpy 4096. Rising Trucking Stocks Say The Economy Is Still Motoring Ahead 4097. Microsoft Pulled Windows 10 Update Over Privacy Settings Bug 4098. Share market ends week on low as China's economy spooks global ... 4099. A Microsoft star seeks to run North Dakota 4100. Microsoft opens Office Insider program to Mac users 4101. Election 2016: Q&A on Scotland's economy 4102. Three YouTube stars interviewed Obama. But this guy didn't. 4103. Nigeria: More Investments Needed to Revive Economy - Dangote 4104. HPE unleashes Machine Learning-as-a-service on Microsoft Azure 4105. Obama scraps Atlantic offshore drilling plans in major reversal 4106. Amman the venue for Palestine qualifiers 4107. Windows Phone part of Microsoft's Bing mobile growth strategy 4108. Obama to make historic trip to Cuba in coming weeks, official says 4109. Why it's time for Narendra Modi to get real about the economy 4110. Microsoft Talks Xbox One Background Music, Struggles of ... 4111. Egypt FM met with Chief Palestinian Commissioners 4112. France's economy is on the move 4113. Microsoft and Facebook building trans-Atlantic cable to boost cloud ... 4114. Microsoft offers developers free tools for its R programming language software 4115. Key areas of cooperation between Malta and Kosovo: the economy ... 4116. The Latina Lesbian Whom Obama Should Nominate To Replace ... 4117. Obama's Hiroshima trip rekindles decades-old controversies 4118. Oberlin Alums Say BDS Drive is Fueling Campus Anti-Semitism 4119. Turkey Plans 'Mini-Cabinet' for Economy With Davutoglu at Helm 4120. Obama Campaigned on Peace, But Brought Death and War ... 4121. UK third quarter economic growth slowdown confirmed 4122. Brexit: Pro-Palestine opposition leader faces crisis as mutineers arise 4123. Microsoft sues US government, says secret data collection is ... 4124. Harvard donor pulls $1M funding after $500 spent on Palestine event 4125. Microsoft Forces Cortana and Google to Break Up 4126. Guest Commentary: Don't impose antiquated rules on the Sharing ... 4127. Egypt banking on archaeological tourism rebound as Middle East ... 4128. Xbox One Division Bundle Announced By Ubisoft And Microsoft 4129. Forget the Economy: Here are four things that will decide your ... 4130. Can Microsoft's new vision of augmented reality convince consumers? 4131. Germans told 'stay away from windows' for Obama visit 4132. As Skilled Workers Abandon Greece, Rebuilding Its Economy Gets ... 4133. Bernie Sanders at Bronx rally: Build an economy 'for all of us' 4134. U.S. officials: Pacific trade pact would be good for Maine economy 4135. Microsoft's Think Next forum concludes, eight certified start-ups graduate 4136. [Never Too Early For A Smile] Microsoft Garage's Mimicker Alarm ... 4137. Opinion: This economy needs ultra-low interest rates just to stay afloat 4138. US economy still needs a gentle shove forward says Fed's Williams 4139. Microsoft And Amazon's Latest Cloud Moves Show How Different ... 4140. Microsoft's big plan to dominate Android and win mobile is coming ... 4141. Infamous Clinton Campaign Strategist Now Owns Firm Behind ... 4142. Microsoft has finally ended support for Internet Explorer 8, 9 and 10 4143. Microsoft gives businesses a free tool for online meetings 4144. US gov't predicts Syria's Assad will outlast Obama 4145. Microsoft announces quarterly dividend 4146. US Companies generating significant economic contributions to the ... 4147. MediaValet Selected to Participate in Operational Preview of Microsoft's New Canadian Cloud Services 4148. Obama: No specific, credible threat of attacks in U.S. 4149. Blind journalist seeks out Palestine's forgotten voices 4150. The plans of Madagascar's president, Libya's crippled economy and ... 4151. SNB's Maechler Says Franc Overvalued, Economy Faces Challenges 4152. President Obama Will Visit Cuba in Historic Trip Next Month ... 4153. Bank of Palestine opens first international office 4154. India's economy grows by 7.4 percent in second quarter 4155. AP-GfK Poll: Obama's approval rises with improving economy 4156. Obama slows Afghanistan drawdown 4157. Obama tackles heroin and prescription drugs addiction in new ... 4158. Putin's $50 Billion Oil Cache Gives Russia Luxury to Ignore ECB 4159. US consumers lend economy a boost in November 4160. Obama gives feds half-day on Christmas Eve 4161. Microsoft turns to latest Qualcomm Snapdragon processor for ... 4162. Obama: Insulting Muslims, Pitting Groups Of Americans Against ... 4163. Hey, Microsoft! Fish or cut bait on enterprise phones 4164. Obama administration sets stage for a debate on drug costs 4165. Mitch McConnell's Arguments Against An Obama Supreme Court ... 4166. Obama lame ducks flock to Davos: Looking for jobs? 4167. All the important Microsoft news stories for June 18, 2016 4168. David Cameron: Leave campaign being 'reckless' with people's future 4169. Yellen signals confidence in economy ahead of Fed rate decision 4170. Obama to propose $200 mln to battle Islamist militants in Africa 4171. What Breed of Dog Do You Look Like? Microsoft Will Tell You 4172. Obama played Prince tracks before visiting the queen 4173. Microsoft Achieves Milestone for New Canadian Cloud 4174. Maybe China's Economy Isn't So Bad After All? 4175. President Obama Shows Lessons Of History Still Relevant In Anti ... 4176. Clinton Voters Like Obama More 4177. Obama assesses Flint water crisis up close 4178. Microsoft boosts support for Spark-based big data analytics 4179. Microsoft backing forest project near Mount Rainier to help offset ... 4180. Obama Tells Orlando: 'Our Hearts Are Broken' 4181. Microsoft wants you using Windows 10, like it or not 4182. Microsoft's New Xbox One Experience missed a crucial chance to ... 4183. Give Directly To The Homeless Through A New Sharing Economy App 4184. Nepal suggested to adopt 'Green Economy' policy 4185. Peacekeeping replaces pipelines in Canada - US dialogue 4186. 'Anti-Obama' YouTube Star Is Done With Conservatism 4187. Retail Sales Rise More Than Forecast as U.S. Consumers Spend 4188. 'If we are not lending, the economy will not grow': SBI chairman 4189. Obama imposes more regulations on financial advisers 4190. This Week in Palestine, May 20th, 2015 4191. InsideSales.com Delivers the Power of Predictive Sales Acceleration to the Microsoft Dynamics CRM Platform 4192. China economy will not have a 'hard landing': premier 4193. Obama to visit Chicago to push for Supreme Court pick 4194. White House confirms Obama is weighing visit to Hiroshima during ... 4195. President Obama expected in Bay Area tonight 4196. Tyronn Lue receives call from President Barack Obama, gets invite ... 4197. Microsoft Office for iOS gets 3D Touch and Apple Pencil support 4198. Airline review: Malaysia Airlines economy class, Kuala Lumpur to ... 4199. Scottish economy sheds jobs at fastest pace since last July as ... 4200. PA’s Abbas Accedes that it Accepted a State on Less Than a Quarter of Historic Palestine 4201. Microsoft just struck a big deal with Beijing 4202. Microsoft Surface Phone May Be In The Works 4203. Here's What the Fed's 'Workhorse' Recession Model Is Telling Us ... 4204. Tom's "turbo-charge" for the SA economy: new cash for jobs 4205. Attackers can turn Microsoft's exploit defense tool EMET against itself 4206. Excitement For Microsoft Surface Phone Continues To Grow 4207. Worries about global economy send German optimism lower 4208. Canada's Trudeau on Economy, Climate and United States 4209. Virgin ups its economy game 4210. Obama in Florida Will Tout Benefits of Economic Stimulus 4211. President Obama misunderstands the country, not the other way ... 4212. Russia remains attractive for Polish business and investments ... 4213. Hall Tax repeal will benefit Tennessee's economy 4214. It's still a lukewarm economy 4215. Michelle Obama raps: Go to college 4216. Bernie Sanders And Hillary Clinton Are Actually Fighting About ... 4217. Microsoft's 'last Lumia' could be launching soon (MSFT) 4218. Crisis or Speed Bump? What UK Vote Means for Economy Sectors 4219. Fed's Fischer watching how quickly Brexit unfolds - CNBC 4220. India's economy grew 7.6 percent in last fiscal year 4221. EU policies to revive economy ineffective: Academic 4222. Apple, Microsoft & Google own 23% of all US corporate cash outside ... 4223. Obama just kicked off his final campaign by unloading, one by one, on Donald Trump's plans 4224. Economy Minister keen to push ahead with corporation tax cut to ... 4225. Florida city renames section of Old Dixie Highway after Obama 4226. Dark economic cloud over IMF-World Bank meeting 4227. Microsoft's Edge keeps shedding share as users pick other browsers on Windows 10 4228. President Obama Is Criticized Over Funeral for Scalia 4229. Over 60% do not think Abenomics will improve Japan economy: poll 4230. Serb Economic Growth Speeds Up in 1st Quarter, Beating Forecasts 4231. The best bits from Microsoft's Future Decoded 2015 4232. Dominic Barton, Canada's New Economy Czar, Calls For ... 4233. President Obama responds to girl who cried because this is his last ... 4234. Improving economic ties Tsai's priority, experts say 4235. Economic Report Concludes Granting China Market Economy ... 4236. Israelis killed Palestinian with 'illegal ammunition' 4237. The facts shoot holes in Obama's claim that US is only host to mass ... 4238. Obama visit to Argentina stirs up 'Dirty War' past 4239. New dynamics of the silver economy 4240. Xbox Scorpio: Xbox One games will run better on Project Scorpio ... 4241. EU economy row rages as Brancaster building boss declares: 'We'll ... 4242. Obama says journalists partly to blame for tone of presidential race 4243. Hillary Clinton Lays Out Her Own Middle East Approach -- And It's ... 4244. Palestinian groups ask court to toss $655M terrorism death award 4245. Obama administration authorizes $1.83 billion arms sale to Taiwan 4246. Microsoft Is Now Testing TV DVR for Xbox One 4247. Obama lands in Ottawa for Three Amigos summit 4248. State of Farmer's Economy briefing set for Feb. 19 in Indianapolis 4249. EASY DOES IT: Here's your complete preview of the week's big ... 4250. With no rate hike seen, Fed's outlook on economy is awaited 4251. US third quarter growth estimate cut to 2% 4252. Obama Says He'll Attend Detroit Auto Show Later This Month 4253. Sorry Microsoft and Google, Salesforce Prefers Amazon.com's AWS 4254. Ben Carson: Obama was 'raised white' and cannot relate to black ... 4255. Microsoft tries to appease critics with a plan to bring 16 million new apps to its app store 4256. New Palestine approves trail plan 4257. US President Obama signs Africa electricity plan into law 4258. NZ-led peace initiative slammed by Israel and Palestine 4259. Drone ban put in place ahead of Obama visit 4260. Microsoft apologizes for Surface Pro 4, Surface Book problems 4261. President Obama has a theory about why people support Donald ... 4262. Obama Says Libya Is a `Mess' Due to Europe, Gulf Failure to Help 4263. Key areas of Argentine economy that could be affected by elections 4264. Man with gun near White House is shot by Secret Service while ... 4265. Obama struggling with immigration rules and cruelties of deportation 4266. EDITORIAL: Work with First Nations can drive economy 4267. PM: Proactive measures have helped to stem slow economy 4268. Obama Sends $4.1 Trillion Spending Plan to Congress/Copyright 2016 Nexstar Broadcasting, Inc. All rights reserved ... 4269. Nigeria: Country's Economy, Entrepreneurship and Banking 4270. Mixed fortunes for UK economy during 2015 4271. PM Modi Hopeful of Israeli-Palestine Talks Resuming Soon 4272. "I Want the World to Wake Up": Hiroshima Survivor Criticizes Obama ... 4273. Locating a Lost Windows Device 4274. Microsoft creates a Game of Thrones Xbox One you can never buy 4275. #GivingTuesday Founder 92Y and Founding Partners Blackbaud and Microsoft to Host #GivingTuesday Command Central on ... 4276. Malaysia's economy grows 5pc in 2015 4277. Lacy Hunt: The Global Economy Has Lost Momentum 4278. Obama urges Howard graduates to continue needed change 4279. Palestine to spray for mosquitos in effort to prevent Zika virus 4280. Microsoft improves Visual C++ compilation 4281. Fifth downtown Halifax business joins Nova Centre legal action 4282. How the on-demand economy is transforming summer jobs 4283. Barack Obama sings alongside Usher during Ray Charles tribute 4284. Uber for Your Lawnmower? The Future of the Sharing Economy. 4285. Scots economy is onto a winner with horseracing 4286. Capital Spending: The Economy's Weak Spot 4287. Economy still 'more important' than executions: Indonesian Attorney ... 4288. Donald Trump Melts Down And Vows To Be More Racist Than ... 4289. 'Cheap' Microsoft Lumia 650 struts its aluminum style (photos) 4290. Obama nukes Hillary, admits server contained top US secrets 4291. Jerusalem Issue Important to be Known: Israeli Historian 4292. US economy seen expanding 2.2 per cent in Q2: Atlanta Fed 4293. NPR apologizes for map that erased Israel 4294. Sheikh Raed Salah: Imprisonment will not discourage fight for ... 4295. What Caused Microsoft Stock to Rise by ~20% in 2015? 4296. Microsoft tests underwater data center 4297. Microsoft opposes US labor board ruling on contract worker rights 4298. Obama Administration Looks to Cement Ethnic Divides With ... 4299. The Gig Economy, and More from CRS 4300. Investor sentiment towards economy improving: Report 4301. Brussels gives support for 'sharing economy' 4302. Trump sinks to a new low by suggesting Obama helps terrorists ... 4303. Obama says Ali shook up the world and left it better off 4304. Your PC will stop nagging you about upgrading to Windows 10 on July 29 4305. Che Obama 4306. Obama unveils wage insurance plan to spur job seekers 4307. Microsoft kills Xbox Fitness, will yank access to previously ... 4308. Obama pledges US support to Belgium after attacks 4309. Microsoft's Project Bletchley builds up blockchains as a service 4310. Microsoft Build: 5 big moves you need to know 4311. Erekat: Kerry vowed to veto UNSC resolutions on Israeli settlements ... 4312. Sweden Contributes $22M to Improve Infrastructure in Palestine 4313. Obama confirms Afghan Taliban leader's death, says chance for peace 4314. Internet fuels 6% of overall US economy: Study 4315. HSBC: Saudi Arabia faces 'stagnation and decay' 4316. Worse in store for South African economy 4317. Microsoft's CEO explains why his company sued the U.S. government 4318. BOE's Vlieghe: UK economy has lost momentum 4319. This is How Obama Really Feels About Putin 4320. With Endangered Species Act Under Attack, Obama Manages to ... 4321. Aiming for the 'cloud', Microsoft to buy LinkedIn for $26.2 bn 4322. US policymakers warn of risks to economy 4323. Microsoft testing Windows 10 Mobile Cumulative Update Build ... 4324. Entire Indian leadership committed to Palestinian cause: Sushma Swaraj 4325. Commit To Purchase Microsoft At $33, Earn 4.7% Using Options 4326. Hillary Clinton's 5 ideas to fix the U.S. economy 4327. Mbeki says statement on white control of economy is not controversial 4328. Microsoft Lumia 650 gets permanent price cut of 25% in UK, and 35 ... 4329. Here to stay: 'Disruptive' sharing economy worth $500m annually to ... 4330. Microsoft Research 2016 predictions: More online video, new processor tech 4331. Surface Pro 5 rumors: Microsoft unlikely to release next-gen tablet ... 4332. Q3 data centre market dominated by HPE, Cisco & Microsoft 4333. Today is supposed to be the 28th Palestinian Independence Day 4334. Obama OKs federal aid for West Virginia; at least 24 dead 4335. Inside Obama's plan to bypass Congress on guns 4336. Obama could decide on greater troop presence in Iraq soon: general 4337. Obama Becomes 1st US President to Visit Hiroshima Bomb Site 4338. Microsoft laid off half the people working on one of its most important ... 4339. Microsoft stops accepting bitcoin on Windows 10 4340. Obama, First Lady Meet With Families of San Bernardino Victims 4341. With new monument, Obama and Dems seize on Equal Pay Day 4342. Palestinians mark 68th anniversary of Israeli Deir Yassin massacre 4343. Supreme Court to Hear Challenge to Obama Immigration Actions 4344. New FCC filings by Microsoft lend credence to rumors of a new Xbox ... 4345. Forces Detain 11 Palestinians, including 5 Minors, in West Bank 4346. Clinton, Sanders vie for Obama voters; GOP woos evangelicals 4347. Using Microsoft Band to Create Circuit Training Workouts 4348. ?Microsoft?????? Google Translate?Microsoft Translator ????????? 4349. Microsoft Gives $1 Billion in Cloud Computing 4350. Economy to grow up to 5 pc in 2016: Husni 4351. Puppy farming a booming but horrific part of the UK economy 4352. Kuwait economy shrinks on falling oil prices 4353. President Obama says US and UK will STILL have 'special ... 4354. 'State of play of the economy' - Remarks by Vice-President ... 4355. Obama: Guantanamo Bay Undermines Security, Must Be Closed 4356. Obama scolds Republicans over Supreme Court stance 4357. Economists: More cars on the road is sign of strong economy 4358. Deeply eurosceptic Britons may still vote to stay in EU - survey 4359. Microsoft's Hologram Technology Is Really Here (and It's Awesome) 4360. Davidson accuses opponents of failing to boost economy 4361. Obama: World must not give in to fear of terror 4362. Obama Admin. Quietly Releases Several Sensitive Benghazi ... 4363. Germany has 'great trust' in VW to clear up all affairs 4364. Japan retains economic assessment, warns of market turmoil 4365. In Bethlehem, even running is a political statement 4366. Obama signs Hatch bill protecting trade secrets 4367. Business Briefing: China’s Economy Starts 2016 at Slowest Pace in Years 4368. House Dem seeks hearing on sharing economy 4369. China looks at ways to include sharing economy in GDP data 4370. Malaysia's economy grows at slowest rate since 2009 4371. Consumption in China is resilient, despite the economic slowdown 4372. Obama tells British youth: Don't pull back from the world 4373. Bank of England's Broadbent struck by lack of UK credit growth 4374. Obama to seek 1.6 percent pay raise for federal government workers 4375. Obama administration proposal for Puerto Rico poses danger to states 4376. Three Amigos Summit: Trudeau, Obama, Pena Nieto United Against ... 4377. Microsoft Is Ready To Compete For Seven-Figure Cybersecurity Deals 4378. Time to recognise the state of Palestine 4379. IOF arrest seven settlers accused of attacking Palestinians 4380. President Obama Gives State of the Union One Last Shot 4381. 5 Things to Watch on the US Economic Calendar 4382. Candidate Bernie Is Candidate Obama 4383. Iran Official Warns of 'Damage' if Nuclear Deal Fails to Boost Economy 4384. McConnell Visits Obama To Tell Him To Forget That Supreme Court ... 4385. Obama Effort to Eliminate Red Tape Adds $16 Billion in Costs 4386. Stocks Snap Higher Following Encouraging Signs on US Economy 4387. Obama: The world needs a global climate change deal 4388. Obama says the US and Italy are working together in Libya 4389. Obama's Plan to Protect 5 Million Immigrants Just Made it to the ... 4390. Microsoft is pulling the plug on old versions of Internet Explorer 4391. Venezuelan healthcare in collapse as economy ails 4392. Americans' Appetite for Restaurants Is Tanking 4393. Krugman: Trump Is 'Completely Incoherent on Economic Policy' 4394. World Bank: Ukraine may show economic growth in 2016, Russia ... 4395. The strongest Republican arguments for blocking President ... 4396. AMD Drops A Big Hint About New Consoles From Microsoft, Sony ... 4397. Another View: Obama's power plan power grab 4398. Citi's Buiter: Global Economy Has Been Slowing Down 4399. Palestinian swimmer glides past obstacles to reach Rio Games 4400. Microsoft looking into storing data using DNA 4401. Obama: US 'will not relent' in Islamic State campaign 4402. Brother Obama 4403. Access world-class Microsoft solutions without breaking the bank 4404. Palestine supports 34-country Saudi alliance against terrorism: Envoy 4405. Obama demands Turkey clamp down on jihadists' crossing points ... 4406. Do Microsoft's Reasons for Buying LinkedIn Make Sense? 4407. Obama to Deliver Statement on the Economy 4408. Microsoft Black Friday Deals: Xbox One, Surface, PC Discounts 4409. Microsoft (MSFT) Stock Gains as Cowen Upgrades to 'Outperform' 4410. Gates: Obama Ignored NSC's Unanimous Advice On Egypt To Be ... 4411. Obama Returns to Where It All Began With Speech in Springfield, Ill. 4412. GDP data to show economy racing, realities less rosy 4413. Donald Trump Uses Vulgar Term to Describe Hillary Clinton's Loss ... 4414. Pak economy is steadily improving: IMF 4415. Palestine boys basketball camp begins Monday 4416. South Korea promotes leisure time in bid to boost economy 4417. Canadian Parliament to Obama: 'Four more years!' 4418. After Palestine talk, Harvard donor stops sponsoring events 4419. Microsoft's Badgering Pays Off With More Windows 10 Upgrades 4420. With the tables turned, Obama now 'regrets' his 2006 Alito filibuster 4421. This Game-Changing Cancer Treatment Could Change the Global ... 4422. Microsoft launches 4G smartphone Lumia 550 for $139 4423. 5 things to know about risks and hope ahead in Japan economy 4424. Economy, stability highlights of Awami League's second successive ... 4425. Microsoft Rolls Out the Third Cumulative Update for Windows 10 1511 4426. The least ugly economy 4427. EU should rethink resolution on China ' s market economy status 4428. Reintroducing border controls within Europe would cost its economy ... 4429. What's in store for China's slowing economy? 4430. Microsoft scores its first-ever pot partnership 4431. Does Obama's Half-Brother George Qualify as a Refugee? 4432. President Obama will ask Congress for $1.8 billion to fight the Zika virus 4433. The economy as political football 4434. Microsoft's week: First taste of Hyper-V Containers, browser ... 4435. Robert Gates: Obama Has Nobody Pushing Back on Him 4436. George Osborne Announces Fresh Spending Cuts In Budget: 'Our Economy Is Not As Big As We Hoped' 4437. COMESA Signs Up Microsoft for Cloud Protection 4438. Roof Racks a Drag on Fuel Economy 4439. Opinion: Zika virus could make the weak global economy even sicker 4440. What will aging boomers and millennials mean for economic growth? 4441. President Obama Will Play Kingmaker in November 4442. Dell XPS 13 To Give Apple, Microsoft A Run For Their Money? 4443. Finnish investors interested in Lagos economy Ambassador 4444. France v. Israel: ambassadors tweet off on Israeli-Palestinian conflict 4445. Obama will get 'Game of Thrones' episodes way before you do 4446. Japan likely averted recession in first quarter; BOJ to ease more by July 4447. New Russia-Ukraine Economic War Over Import Bans Expected In ... 4448. Obama visit, courts, derailment highlight 2015 in West Virginia 4449. Microsoft just put a data center under water 4450. Dining drives huge growth in Brisbane's night-time economy 4451. Microsoft has permanently cut the price of its Surface 3 Docking ... 4452. Prominent Palestinian Human Rights Defenders Conclude Historic ... 4453. Biskupski's priorities: Homelessness, economy and crime 4454. Balancing act: India warms up to Israel but it won't risk abandoning ... 4455. Obama says he's not to blame for the GOP 'crackup' that led to rise of ... 4456. Obama signs budget with $3.1 bn aid package to Israel 4457. China's top economic planner: 'hard landing' impossible 4458. Obama names his favorite conspiracy theory about himself 4459. Frmr. Obama Aide Ross: WH Made 'Conscious Decision' to Keep ... 4460. Google and Microsoft are teaming up to investigate how computing ... 4461. Beyond Brexit: What matters most to global economies 4462. 'Our economic system is designed to fail' Ron Paul 4463. Crimes against the Palestinians Are finally Called ‘Crimes’ 4464. Microsoft Health app updated with Activity Sharing fix 4465. Why India's economic growth remains a worry 4466. What Can Obama Do on His Own to Tighten Gun Control? 4467. Microsoft Unveils Windows Defender Advanced Threat Protection ... 4468. Why The CEO Of Fiverr Thinks The Future Of Work Is About The Gig ... 4469. Brexit means a bumpy road ahead for the UK 4470. 3 Ways Republicans Would Get the Economy Growing Again 4471. Microsoft to warn E-Mail users about government hack attacks 4472. Microsoft Sets the Stage for IoT-Enabled CRM 4473. Microsoft Hungary welcomes new management 4474. Obama administration plans new high-level cyber official 4475. Obama looks to expand background checks for guns with executive ... 4476. EU referendum must be held SOON to boost Britain's economy, say ... 4477. Obama Gets Scant Credit in Indiana Region Where Recovery Was ... 4478. Macro-economic and business environment scoresheet- Lagos ... 4479. An Upgrade for Microsoft? Here Are 3 Things You Need to Know 4480. Microsoft's latest Windows 10 upgrade tactic: Spreading fear over ... 4481. Calgary Economic Forecast calls for heavy 'humility' in 2016 4482. Obama looks back upon his presidency, and beyond 4483. Is cheap oil bad for the economy? 4484. Botswana's economy to return to growth this year: cenbank 4485. Economy concerns understandable- China 4486. Microsoft surfaces an underwater datacenter in Washington 4487. Mitsubishi Shares Hit a Record Low on Fuel Economy Data Cheat 4488. From Iraq to Palestine, the power of the pro-Israel lobby is plain to see 4489. Five Things You Need to Know to Start Your Day 4490. Palestinian Body Demands Release of Cancer-Stricken Palestinian ... 4491. Microsoft killing Azure Mobile Services in December, will migrate ... 4492. The curse of slow growth afflicts the US economy 4493. Obama administration officials warn lawmakers over Iran sanctions 4494. Palestinian refugees in vulnerable situation: UNRWA 4495. Microsoft to work with cannabis compliance tech firm Kind 4496. Here's why beating up on Wall Street will wind up hurting the economy 4497. Effect of oil price shock still unfolding but economy coping well so far: IMF 4498. Microsoft Canadian Datacentres Expand Insight's Canadian Footprint 4499. US Stocks Slide on China Worries, Sharp Drop in Oil 4500. Increase in night-time assaults linked to improved economy ... 4501. Lucidworks View released, Microsoft's Global CSS Property Usage ... 4502. SafeShare Insurance over Blockchain for Shared Economy ... 4503. G7 summit: Obama, Abe, Cameron among world leaders in Japan ... 4504. Head-To-Head: Lenovo Yoga 900S Vs. Microsoft Surface Pro 4 4505. Obama breathed new life into federal grant aid, yet it's not enough to ... 4506. The Hegemony Of Violence In Israel-And/Or-Palestine 4507. Surface Book UK price and release date confirmed 4508. At Pulse Memorial, Obama Blasts Republicans For Arming Terrorists 4509. Obama: boxing great Muhammad Ali "fought for us" 4510. Obama urges world action on climate change: No nation 'immune' to ... 4511. Economy to grow 7.05pc: BBS 4512. Automakers report strong April sales, but their shares fall on ... 4513. Russia 2018/UAE 2019 Qualifiers: Palestine 7-0 Timor Leste 4514. Truth Time for Obama: Defeat Daesh With Russia's Help or Try to ... 4515. Economy has plunged into deep crisis, says Congress 4516. Flood of Central Bank Moves Can't Get World Economy Out of Rut 4517. Obama 'confident' TPP will be ratified in US despite intense opposition 4518. Julie Winter: Rebuild economy'sfoundation 4519. ESPNTopNews 4520. Tamera Mowry-Housley on How Michelle Obama Reacted to Her ... 4521. Countdown Interval Timer paces your workouts from the Microsoft ... 4522. Obama still pondering death penalty's role in justice system 4523. Beck: 'ISIS Is The Fruit Of Obama' 4524. How the White House prepared for Brexit 4525. Labor threatens economy: Morrison 4526. Singapore economy slowed in 2015, revised GDP shows 4527. Obama's legacy regarding Africa can still be reshaped before ... 4528. Microsoft's Developer Evangelism chief promise more Windows ... 4529. Northern Ireland leaders and Barack Obama discuss Adrian Ismay ... 4530. US President Obama hopes to stoke optimism in farewell union ... 4531. The Debate on the Israeli National Anthem 4532. Windows 10-powered Microsoft Lumia 650 listed on Amazon India ... 4533. Experts: Recession Risk Higher for Global Economies Than for US 4534. The $2.8 Trillion 'Economy' You Can't See 4535. IMF Revives Recession Warning for U.K. Economy Over Brexit Vote 4536. Amazon Web Service exec on competing with Google and Microsoft 4537. Microsoft Wants More Football Clubs to Use Windows 10, Surface ... 4538. 5 Things You Need To Know About The Disruption Economy 4539. Congress Is Trying to Give Obama Powers to Fight ISIS That He ... 4540. Economy gets clean bill of health but agency warns about pensions 4541. BOJ's Kuroda - Strengthening yen may hurt Japan's economy 4542. Obama Wants To Push Our Country's Power Grid Into The 21st ... 4543. President Obama celebrates jazz at the White House 4544. Sluggish economy casts shadow over Mongolia's elections 4545. Obama likes Kendrick Lamar, 'The Martian' 4546. Microsoft Admits Bug In Windows 10 Update: Fresh Installs Now ... 4547. Spanish economy grows at fastest pace since financial crisis 4548. Microsoft offers unwanted-software detection for the enterprise 4549. Singapore c.bank says policy provides appropriate economic support 4550. Obama Commutes Sentences For Pittsburgh Man, 5 Other Pennsylvanians 4551. Microsoft Surface Hub delayed again due to 'manufacturing issues' 4552. Froma Harrop: In Cuba, Obama did U.S. proud 4553. FIFA orders Palestine-Saudi World Cup game played on neutral territory 4554. France's Middle East Peace Initiative And The Hamas Conundrum ... 4555. Microsoft commits to cleaning up its cloud 4556. Media Planning Must Change in the Customer-Centric Digital ... 4557. Obama Seeks $1 Billion to Fight Drug Abuse 4558. Microsoft reveals ‘CaptionBot’ you can try out online 4559. Microsoft puts Windows Phone on hold 4560. Saudi Arabia's Cabinet Approves Economic Reform Package 4561. World Bank keeps its forecast for Ukraine's economy growth at 1 per ... 4562. China Economy And Currency Sound, Says China's Central Bank ... 4563. What's the Fed's View on Economy? Minutes May Offer Clues 4564. Obama DOJ Prosecuted More Gov. Officials For Leaking Classified ... 4565. Fed's Mester retains mostly upbeat view of U.S. economy 4566. Kazakhstan Unexpectedly Lowers Rates as Focus Shifts to Economy 4567. The Nuclear Option: Happy Thanksgiving! President Obama ... 4568. Read the Full Text of the Ninth Democratic Debate in Brooklyn 4569. Obama calls Broncos to congratulate them on Super Bowl win 4570. This obscure indicator is flashing red for the US economy 4571. The economy second half pick-up 4572. French economy minister to seek solution to Areva-Siemens' Finland dispute 4573. Early Look: China Economic Growth Likely Took Another Step Down ... 4574. Top Mobile Apps of 2015 Released: Microsoft Not Present 4575. Obama's Carbon Rule Victory is More Important Than You Think 4576. Five times Obama won the internet: From sitting 'Between Two Ferns ... 4577. China just made a move to tackle the biggest threat to its economy ... 4578. Instant Analysis: Facebook and Microsoft Team Up for Undersea ... 4579. Obama Signs Bill Removing 'Oriental' and 'Negro' From Federal Laws 4580. Partition, pragmatism and missed opportunities between Israel and the Palestinians 4581. It's Time to Invest in The World's Second-Biggest Economy (No, It's ... 4582. OBAMA LEGACY: Immigration stands as most glaring failure 4583. US election 2016: Obama warns against campaign anger 4584. Economy shrinks 1.2% in first quarter, raising prospect of recession 4585. Latest in Economy 4586. Obama to Nominate Joseph Votel as Head of U.S. Central Command 4587. GOP candidates to Obama: Too little, too late 4588. Week Ahead Economic Outlook: UK inflation expected to inch higher 4589. Obama to name Stonewall Inn first national monument for gay rights 4590. The Economy Hub: NZ immigration three times Brexit Britain 4591. Audiences la Prsidence du Faso : La Palestine veut partager son ... 4592. Black Trade Unionists Call on Obama to Condemn Coup and ... 4593. 8ninths Develops “Holographic Workstation”TM for Citi Traders using Microsoft HoloLens 4594. Microsoft's heavy-handed Windows 10 tactics may be its undoing 4595. Kate Middleton, Prince William Hid Title of Painting for President ... 4596. Regional economy keeps humming along 4597. Xbox v Playstation: Can Microsoft unite gamers? 4598. Lumia 650 hands-on: Microsoft's latest Lumia is actually really ... 4599. Stock slide continues on global economy, Fed fears; S&P faces 5 ... 4600. McDonnell: 'wealth creators' support Labour economic policy 4601. Microsoft announces Update 2 of Microsoft Office Developer Tools ... 4602. Cork roadwork delay may threaten Munster economy 4603. Microsoft's Ben Rudolph and Panos Panay to host Livestream Tour ... 4604. Exit polls: Economy top concern for Indiana voters 4605. Your Call: Rethinking the politics of Israel-Palestine 4606. Microsoft received more than 500 requests to take down revenge porn 4607. Responsible deficits will help Canada's weak economy: Morneau 4608. Smearing Palestine in UK schools must stop 4609. Employment in India's app economy to double by 2016 4610. Microsoft apps now come with Android devices from 74 companies 4611. Microsoft unlocks framerates for UWP apps, reassures devs 'we're listening' 4612. Obama Is Toying with Hillary on Emails 4613. Japanese economy Weak yen puts per-capita GDP behind Hong ... 4614. Obama sanctions NKorea for nuclear, missile tests 4615. IMFs Lagarde: "There is a recovering the global economy, but..." 4616. Proposed Rules on Incentive Pay Will Damage the Economy 4617. Snapshots: Election won't affect economy, investor says 4618. Funds for Obama climate deal survive in spending bill 4619. White House Opens Door to CAIR Rep, Ignores Muslim Reformers 4620. Microsoft Sells Its Low-End Phone Business 4621. Obama: GOP could break judicial nominations ‘beyond repair’ 4622. Police: Woman, 4 grandchildren killed by flooding in Palestine, Texas 4623. Top 10 Microsoft fails: Updategate, Surface RT, Windows Vista and ... 4624. Rail cargo decline points to weak spots in economy 4625. What Can Congress and President Obama Accomplish in 2016? 4626. Refugees: Germany's Economic Challenge 4627. Obama administration to issue guidance on transgender bathrooms 4628. Palestine's Broken Leadership 4629. Kidero to launch night market to promote 24hr economy 4630. Unicorn economy sees biggest cash flow in a decade 4631. Larry Wilmore on Hosting Obama's Farewell Dinner, How Many ... 4632. Samsung's leaked Windows tablet looks a lot like Microsoft's Surface 4633. Weak economy to worsen market woes 4634. Windows 10 Mobile on an 8-inch tablet looks like a giant phone 4635. Is Microsoft about to launch an upgraded Xbox One? 4636. Microsoft Surface Pro 4: This should be your next laptop computer ... 4637. The Obama Administration's Broken Promises 4638. Windows 10 Build 14291 is major, with Edge extensions, new Maps and more 4639. Obama seeks $1 billion for cancer 'moonshot' over two years 4640. Hackers Can Trick One of Microsoft's Security Tools to Disable Itself 4641. Microsoft Corporation Sues Uncle Sam Over Unconstitutional Data ... 4642. Timing of rate hike is unclear, Yellen says 4643. Experts: Palestine Narrative Should be Unified 4644. The American Hunger Games: Top Republican Candidates Take ... 4645. Oil rise 3 percent as China moves to boost economy, crude output drops 4646. Microsoft working to fix Windows Store issues for small developers 4647. Crisis or speed bump? What Brexit vote means for Europe, world ... 4648. Post-CES fun: Watch Microsoft's Ben Rudolph throw Dan to the ... 4649. Obama would be hypocritical to back EU 'In' vote, says London mayor 4650. G7 warns over global economy as currency row flares 4651. Senate Democrats Slam Obama Education Chief's 'Absurd' Logic 4652. Here's Why Microsoft Wants to Host Your Next Business Meeting 4653. The economic question Republicans face, but can't answer 4654. How Obama Could Revolutionize Nuclear Weapons Strategy Before ... 4655. HP, Tetra Pak win big with the circular economy 4656. The Essential Heartlessness of the Sharing Economy Will Be ... 4657. Top Story: Hackers are using Microsoft Word to steal your money 4658. Early action on city region deals needed to future-proof economy 4659. The True Face of Students for Justice in Palestine 4660. Ted Cruz to Skip Obama's Final State of the Union 4661. Business owners' confidence in economy is sinking 4662. Microsoft Acquires Italian Tech Company, Plans To Boost IoT Service
# Define a function to get content-based recommendations
def content_based_recommendations(title, num_recommendations=5):
# Check if the input title exists in the dataset
if title not in data['Title'].values:
print(f"Article title '{title}' not found in the dataset. \nRecommending similar articles instead.")
# Calculate similarity between input title and all articles
input_vector = tfidf_vectorizer.transform([title])
cosine_sim_input = linear_kernel(input_vector, tfidf_matrix)
# Get indices of top similar articles
similar_article_indices = cosine_sim_input[0].argsort()[-num_recommendations-1:-1][::-1]
# Return titles of similar articles
return data['Title'].iloc[similar_article_indices].tolist()
# If the input title exists in the dataset, proceed as before
idx = data[data['Title'] == title].index[0]
sim_scores = list(enumerate(cosine_sim[idx]))
sim_scores = sorted(sim_scores, key=lambda x: x[1], reverse=True)
sim_scores = sim_scores[1:num_recommendations + 1]
item_indices = [i[0] for i in sim_scores]
return data['Title'].iloc[item_indices]
# Example: Get content-based recommendations for a specific news article
article_title = "obama "
recommendations = content_based_recommendations(article_title)
print("\nContent-Based Recommendations:")
if recommendations:
for i, recommendation in enumerate(recommendations):
print(f"{i + 1}. {recommendation}")
else:
print("No recommendations found for the given article title.")
Article title 'obama ' not found in the dataset. Recommending similar articles instead. Content-Based Recommendations: 1. Brother Obama 2. President Barack Obama & Michelle Obama Are Set To Visit ... 3. Obama to Be a Traveling Man in Last Year in Office 4. Obama looks back upon his presidency, and beyond 5. Obama on Islamic State group: 'We will defeat them'
The main output of interest is the "Content-Based Recommendations" section, which will display the top recommended articles that are similar in content to the input article title.
Please note that the specific recommendations will depend on the input article title we provide, and the recommendations will be different for different titles.